yacd/.eslintrc.yml

48 lines
1.1 KiB
YAML
Raw Normal View History

2018-10-20 20:32:02 +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:
- 'plugin:@typescript-eslint/recommended'
- 'prettier'
- prettier/@typescript-eslint
2019-03-28 21:43:11 +08:00
- react-app
2020-08-06 16:26:01 +08:00
- 'plugin:jsx-a11y/recommended'
env:
node: true
jest: true
2018-10-20 20:32:02 +08:00
globals:
__DEV__: true
2018-10-20 20:32:02 +08:00
rules:
'@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'
'@typescript-eslint/no-unused-vars':
- 'error'
- argsIgnorePattern: '^_'
'@typescript-eslint/no-use-before-define':
- error
- functions: false
# 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
react-hooks/rules-of-hooks: error
react-hooks/exhaustive-deps:
- warn
- additionalHooks: useRecoilCallback
simple-import-sort/sort: error
# quotes: ["error", "single"]
# strict: ["error", "never"]
# no-console: "warn"