-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.eslintrc.yaml
54 lines (54 loc) · 1.29 KB
/
.eslintrc.yaml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
env:
browser: true
es2022: true
jest: true
node: true
extends:
- eslint:recommended
- plugin:react/recommended
- prettier
- plugin:react-hooks/recommended
- plugin:jest/recommended
- plugin:jest-dom/recommended
parser: "@babel/eslint-parser"
plugins:
- "@babel"
- jest
- react
- react-hooks
- testing-library
overrides:
- files:
- "**/__tests__/**/*.[jt]s?(x)"
- "**/?(*.)+(spec|test).[jt]s?(x)"
extends:
- "plugin:testing-library/react"
- files:
- "**/*.ts?(x)"
parser: "@typescript-eslint/parser"
parserOptions:
tsconfigRootDir: .
project: ['./tsconfig.json']
extends:
- eslint:recommended
- plugin:@typescript-eslint/eslint-recommended
- plugin:@typescript-eslint/recommended
- plugin:@typescript-eslint/recommended-requiring-type-checking
rules:
"@typescript-eslint/no-unused-vars":
- error
- varsIgnorePattern: "^_"
argsIgnorePattern: "^_"
# For compat with jest: https://typescript-eslint.io/rules/unbound-method/
"@typescript-eslint/unbound-method": "off"
"jest/unbound-method": "error"
rules:
quotes:
- error
- single
- avoidEscape: true
allowTemplateLiterals: true
indent: [error, 2]
settings:
react:
version: detect