-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc.yml
39 lines (39 loc) · 1.06 KB
/
.eslintrc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
env:
browser: true
es2021: true
node: true
jest: true
extends:
- eslint:recommended
- plugin:react/recommended
- plugin:@typescript-eslint/recommended
parser: "@typescript-eslint/parser"
parserOptions:
ecmaFeatures:
jsx: true
ecmaVersion: latest
sourceType: commonJS
plugins:
- react
- "@typescript-eslint"
- "testing-library"
- "jest-dom"
# overrides:
# - files:
# - "**/__tests__/**/*.[jt]s?(x)"
# - extends:
# - "plugin:testing-library/react"
rules: {
"@typescript-eslint/no-inferrable-types": "off",
"react/react-in-jsx-scope": "off",
"react/jsx-filename-extension":
[1, { "extensions": [".js", ".jsx", ".ts", ".tsx"] }],
# "testing-library/await-async-query": "error",
# "testing-library/no-await-sync-query": "error",
# "testing-library/no-debugging-utils": "warn",
# "testing-library/no-dom-import": "off",
# "jest-dom/prefer-checked": "error",
# "jest-dom/prefer-enabled-disabled": "error",
# "jest-dom/prefer-required": "error",
# "jest-dom/prefer-to-have-attribute": "error",
}