-
Notifications
You must be signed in to change notification settings - Fork 54
feat: use TypeScript, first implementation #69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
f1cdc1c
5bdb6d4
40c836f
8b07bdd
d4a5cee
6f59acf
c618fba
b457f51
908786a
984c1df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,3 @@ | ||
| **/.* | ||
| node_modules | ||
| build |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,32 @@ | ||
| module.exports = { | ||
| extends: 'gemini-testing', | ||
| root: true | ||
| root: true, | ||
| parser: '@typescript-eslint/parser', | ||
| plugins: [ | ||
| '@typescript-eslint', | ||
| ], | ||
| extends: [ | ||
| 'gemini-testing', | ||
| 'plugin:@typescript-eslint/eslint-recommended', | ||
| 'plugin:@typescript-eslint/recommended', | ||
| ], | ||
| rules: { | ||
| "@typescript-eslint/explicit-function-return-type": "off", | ||
| "@typescript-eslint/explicit-member-accessibility": "off", | ||
| "@typescript-eslint/no-explicit-any": "off", | ||
| "prefer-rest-params": "off", | ||
| "@typescript-eslint/no-use-before-define": [ | ||
| "error", | ||
| { | ||
| functions: false, | ||
| classes: false, | ||
| variables: true, | ||
| typedefs: false, | ||
| }, | ||
| ], | ||
| "@typescript-eslint/no-parameter-properties": "off", | ||
| "no-prototype-builtins": "off", | ||
| "object-curly-spacing": ["error", "always"], | ||
| quotes: ["error", "double", {avoidEscape: true}], | ||
| "comma-dangle": ["error", "always-multiline"], | ||
| } | ||
| }; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| node_modules | ||
| build |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| build |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "printWidth": 120, | ||
| "useTabs": false, | ||
| "tabWidth": 4, | ||
| "semi": true, | ||
| "singleQuote": false, | ||
| "trailingComma": "all", | ||
| "bracketSpacing": true, | ||
| "arrowParens": "avoid" | ||
| } |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.