forked from parkwoohyeok/power12team
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
41 lines (41 loc) · 1006 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
35
36
37
38
39
40
41
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 6,
"requireConfigFile": false,
"babelOptions": {
"presets": ["@babel/preset-react"]
}
},
"root": true,
"plugins": ["prettier", "import"],
"extends": [
"eslint:recommended",
"plugin:import/warnings",
"plugin:prettier/recommended",
"airbnb-base",
"prettier"
],
"rules": {
"react/prop-types": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"consistent-return": 0,
"react/no-unknown-property": 0,
"no-unused-vars": "off",
"prettier/prettier": ["error", { "endOfLine": "auto", "useTabs": false }],
"arrow-body-style": "off",
"import/no-unresolved": "off",
"import/order": "off",
"no-unsafe-optional-chaining": "off",
"no-shadow": "off",
"dot-notation": "off",
"object-shorthand": "off",
"consistent-return": "off"
}
}