-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.eslintrc.json
34 lines (34 loc) · 928 Bytes
/
.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
{
"rules": {
"import/no-extraneous-dependencies": "off",
"react/react-in-jsx-scope": "off",
"import/no-dynamic-require": "off",
"react/jsx-props-no-spreading": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"global-require": "off",
"jest/no-standalone-expect": "off",
"react/jsx-no-undef": "off",
"react/prop-types": "off",
"import/extensions": "off"
},
"extends": ["erb"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module",
"project": "./tsconfig.json",
"tsconfigRootDir": ".",
"createDefaultProgram": true
},
"settings": {
"import/resolver": {
"typescript": {}
}
},
"plugins": ["react", "@typescript-eslint"]
}