forked from nathancahill/split
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
24 lines (24 loc) · 677 Bytes
/
.eslintrc
File metadata and controls
24 lines (24 loc) · 677 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
{
"extends": "airbnb",
"env": {
"browser": true
},
"plugins": ["compat"],
"rules": {
"compat/compat": 2,
"max-len": ['warn', 100, 2, {
ignoreUrls: true,
ignoreComments: false,
ignoreRegExpLiterals: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
}],
"semi": ["error", "never"],
"indent": ["error", 4],
"no-case-declarations": [0],
"quote-props": ["error", "consistent"],
"space-before-function-paren": ["error", { "anonymous": "never", "named": "always" }],
"arrow-parens": [2, "as-needed", { "requireForBlockBody": false }],
"no-param-reassign": ["error", { "props": false }],
}
}