yacd/.eslintrc.yml

49 lines
1.2 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'
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'
env:
node: true
2018-10-20 20:32:02 +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'
'@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
2022-05-08 22:47:42 +08:00
'@typescript-eslint/ban-ts-comment': 'off'
2022-05-08 18:37:08 +08:00
'@typescript-eslint/ban-ts-ignore': 'off'
react-hooks/rules-of-hooks: error
react-hooks/exhaustive-deps:
- warn
- additionalHooks: useRecoilCallback
2020-11-21 22:14:51 +08:00
simple-import-sort/imports: error
# quotes: ["error", "single"]
# strict: ["error", "never"]
# no-console: "warn"