forked from benjamine/fetch-wrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
41 lines (41 loc) · 1.02 KB
/
Copy path.eslintrc.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
{
"extends": "standard",
"plugins": [
"standard"
],
"rules": {
"semi": [2, "always"],
"space-before-function-paren": [2, "never"],
"max-len": [2, 120, 2],
"camelcase": [2, {"properties": "always"}],
"linebreak-style": [2, "unix"],
"new-cap": [2, { "newIsCap": true, "capIsNew": true }],
"arrow-body-style": [2, "as-needed"],
"arrow-parens": [2, "as-needed"],
"prefer-arrow-callback": 0,
"prefer-template": 0
},
"ecmaFeatures": {
"binaryLiterals": false,
"blockBindings": false,
"defaultParams": false,
"forOf": false,
"generators": false,
"objectLiteralComputedProperties": false,
"objectLiteralDuplicateProperties": false,
"objectLiteralShorthandMethods": false,
"objectLiteralShorthandProperties": false,
"octalLiterals": false,
"regexUFlag": false,
"regexYFlag": false,
"templateStrings": false,
"unicodeCodePointEscapes": false,
"jsx": false
},
"globals": {
},
"env": {
"browser": false,
"node": true
}
}