forked from CW-Codewalnut/codewalnut-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
49 lines (48 loc) · 1.11 KB
/
.eslintrc.json
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
{
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"browser": true,
"es2021": true,
"node": true,
"jest": true
},
"extends": [
"next",
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:testing-library/react",
"plugin:jest-dom/recommended",
"airbnb",
"airbnb/hooks",
"airbnb-typescript",
"prettier"
],
"plugins": ["react", "@typescript-eslint", "testing-library", "jest-dom"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"ignorePatterns": ["*.config.js", "*.setup.js", "/coverage", "*.json"],
"rules": {
"@typescript-eslint/quotes": 0,
"import/extensions": 0,
"import/prefer-default-export": 0,
"no-underscore-dangle": 0,
"operator-linebreak": 0,
"react/jsx-props-no-spreading": 0,
"react/react-in-jsx-scope": 0,
"react/require-default-props": 0,
"import/no-extraneous-dependencies": 0
},
"root": true
}