forked from Rolling-Project-Team-9/rolling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
34 lines (34 loc) · 799 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
{
"root": true,
"env": {
"browser": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"ignorePatterns": ["webpack.config.js"],
"extends": ["airbnb", "airbnb/hooks"],
"plugins": ["prettier", "import"],
"rules": {
"react/prop-types": "off",
"no-unused-vars": "off",
"prefer-destructuring": ["error", { "object": true, "array": false }],
"implicit-arrow-linebreak": "off",
"operator-linebreak": "off",
"object-curly-newline": "off",
"max-len": "off",
"jsx-a11y/label-has-associated-control": "off",
"no-console": "off",
"no-confusing-arrow": "off",
"indent": "off"
},
"settings": {
"import/resolver": {}
}
}