-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
118 lines (118 loc) ยท 3.12 KB
/
Copy path.eslintrc.json
File metadata and controls
118 lines (118 loc) ยท 3.12 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"env": {
"browser": true,
"es2021": true,
"jasmine": true,
"jest": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"eslint-config-prettier",
"next/core-web-vitals"
],
"plugins": ["@typescript-eslint"],
"settings": {
"react": {
// Tells eslint-plugin-react to automatically detect the version of React to use.
"version": "detect"
},
"import/extensions": [".js", ".jsx", ".ts", ".tsx"],
"import/resolver": {
"node": {
"paths": ["src"],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
},
"typescript": {
"project": "."
}
}
},
"rules": {
"jsx-a11y/media-has-caption": "off",
"import/no-cycle": "off",
"no-nested-ternary": "off",
"react/no-array-index-key": "off",
"no-restricted-syntax": "off",
"prefer-destructuring": "off",
"no-undef": "off",
"no-use-before-define": "off",
"react-hooks/exhaustive-deps": "off",
"consistent-return": "off",
"import/order": "off",
"arrow-body-style": "off",
"no-plusplus": "off",
"react/display-name": "off",
"react/function-component-definition": [
"warn",
{ "namedComponents": "arrow-function" }
],
"react/jsx-one-expression-per-line": "off",
"react/jsx-filename-extension": [
"error",
{ "extensions": [".js", ".jsx", ".ts", ".tsx"] }
],
"react/jsx-props-no-spreading": "off",
"react/require-default-props": "off",
"react/jsx-wrap-multilines": "off",
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"import/prefer-default-export": "off",
"import/no-unresolved": "off",
"no-restricted-exports": [
"error",
{ "restrictDefaultExports": { "defaultFrom": false } }
],
"import/no-anonymous-default-export": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.test.tsx",
"**/*.stories.*",
"**/.storybook/**/*.*",
"setupTests.ts"
],
"peerDependencies": true
}
],
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"no-param-reassign": ["error", { "props": false }],
"no-unused-expressions": ["warn"],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{ "argsIgnorePattern": "^_" }
],
"no-shadow": "off",
"@typescript-eslint/no-shadow": ["error"],
"@typescript-eslint/camelcase": "off",
"lines-between-class-members": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/label-has-associated-control": [
"error",
{
"labelComponents": ["label"],
"labelAttributes": ["htmlFor"],
"controlComponents": ["input"]
}
]
},
"globals": { "navigation": "readonly", "globalThis": false, "NodeJS": true }
}