-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
42 lines (42 loc) · 1.04 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
{
"env": {
"browser": true,
"es2021": true,
"jest": true
},
"extends": ["plugin:react/recommended", "airbnb", "prettier"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".ts", ".tsx"]
}
}
},
"plugins": ["react", "@typescript-eslint"],
"rules": {
"react/jsx-filename-extension": [0],
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"react/react-in-jsx-scope": "off",
"no-console": "warn",
"import/no-unresolved": "off",
"import/extensions": "off",
"no-unused-vars": "off",
"no-useless-constructor": "off",
"no-shadow": "off",
"no-empty-function": "off",
"max-classes-per-file": "off",
"class-methods-use-this": "off",
"react/jsx-props-no-spreading": "off",
"react/require-default-props": "off",
"no-use-before-define": "off"
}
}