2018-10-20 20:32:02 +08:00
|
|
|
---
|
2020-05-12 23:55:05 +08:00
|
|
|
parser: '@typescript-eslint/parser'
|
|
|
|
parserOptions:
|
|
|
|
project: tsconfig.json
|
|
|
|
sourceType: module
|
|
|
|
|
2020-08-06 16:26:01 +08:00
|
|
|
plugins:
|
|
|
|
- simple-import-sort
|
|
|
|
- jsx-a11y
|
|
|
|
|
2018-10-20 20:32:02 +08:00
|
|
|
extends:
|
2020-05-12 23:55:05 +08:00
|
|
|
- 'plugin:@typescript-eslint/recommended'
|
2021-02-28 11:51:29 +08:00
|
|
|
- prettier
|
2019-03-28 21:43:11 +08:00
|
|
|
- react-app
|
2020-08-06 16:26:01 +08:00
|
|
|
- 'plugin:jsx-a11y/recommended'
|
2020-06-20 22:28:43 +08:00
|
|
|
|
2020-05-12 23:55:05 +08:00
|
|
|
env:
|
|
|
|
node: true
|
|
|
|
jest: true
|
2018-10-20 20:32:02 +08:00
|
|
|
|
2019-12-26 18:50:45 +08:00
|
|
|
globals:
|
|
|
|
__DEV__: true
|
2018-10-20 20:32:02 +08:00
|
|
|
|
|
|
|
rules:
|
2020-12-06 20:12:16 +08:00
|
|
|
'@typescript-eslint/no-empty-interface': 'off'
|
2020-05-12 23:55:05 +08:00
|
|
|
'@typescript-eslint/interface-name-prefix': 'off'
|
|
|
|
'@typescript-eslint/explicit-function-return-type': 'off'
|
|
|
|
'@typescript-eslint/no-explicit-any': 'off'
|
|
|
|
'@typescript-eslint/camelcase': 'off'
|
2020-09-13 16:34:18 +08:00
|
|
|
'no-use-before-define': 'off'
|
2020-05-12 23:55:05 +08:00
|
|
|
'@typescript-eslint/no-unused-vars':
|
|
|
|
- 'error'
|
2020-06-20 22:28:43 +08:00
|
|
|
- argsIgnorePattern: '^_'
|
2020-05-12 23:55:05 +08:00
|
|
|
'@typescript-eslint/no-use-before-define':
|
|
|
|
- error
|
|
|
|
- functions: false
|
2020-05-24 19:26:59 +08:00
|
|
|
# disable this temporarily since we have a lot of JS files
|
|
|
|
# and typescript-eslint runs against JS files too
|
|
|
|
'@typescript-eslint/explicit-module-boundary-types': off
|
2022-05-08 18:37:08 +08:00
|
|
|
'@typescript-eslint/ban-ts-ignore': 'off'
|
2020-05-24 19:26:59 +08:00
|
|
|
react-hooks/rules-of-hooks: error
|
2020-06-20 22:28:43 +08:00
|
|
|
react-hooks/exhaustive-deps:
|
|
|
|
- warn
|
|
|
|
- additionalHooks: useRecoilCallback
|
2020-11-21 22:14:51 +08:00
|
|
|
simple-import-sort/imports: error
|
2020-05-12 23:55:05 +08:00
|
|
|
# quotes: ["error", "single"]
|
|
|
|
# strict: ["error", "never"]
|
|
|
|
# no-console: "warn"
|