-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
29 lines (29 loc) · 624 Bytes
/
Copy path.eslintrc
File metadata and controls
29 lines (29 loc) · 624 Bytes
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
{
"root": true,
"env": {
"es2020": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
},
"babelOptions": {
"envName": "es"
}
},
"extends": ["eslint-config-airbnb-base", "prettier"],
"plugins": ["eslint-plugin-prettier", "prettier"],
"rules": {
"import/order": ["error", {
"groups": [
["builtin", "external", "internal"],
["parent", "sibling", "index"]
],
"newlines-between": "always"
}],
"prettier/prettier": "error",
"arrow-body-style": 0
}
}