-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
46 lines (40 loc) · 917 Bytes
/
.eslintrc
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
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["plugin:react/recommended", "airbnb"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"settings": {
"import/resolver": {
"alias": {
"map": [
["@components", "./src/components"],
["@styles", "./src/styles"],
["@assets", "./src/assets"]
],
"extensions": [".js", ".jsx", ".json"]
}
}
},
"plugins": ["react"],
"rules": {
"linebreak-style": 0,
"global-require": 0,
"eslint linebreak-style": [0, "error", "windows"],
"react/jsx-filename-extension": [0],
"react/require-default-props": [1],
"no-unused-vars": [1],
"comma-dangle": [0],
"no-confusing-arrow": [0],
"implicit-arrow-linebreak": [0],
"indent": [0],
"object-curly-newline": [0]
}
}