forked from Kinetic/kinetic-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
29 lines (27 loc) · 759 Bytes
/
.eslintrc
File metadata and controls
29 lines (27 loc) · 759 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
{
"extends": "airbnb/base",
"env": {
"browser": false,
"node": true,
"mocha": true
},
"rules": {
"strict": [2, "global"],
"indent": [2, 4],
"no-mixed-spaces-and-tabs": 2,
"max-len": [2, 80, 4],
"quotes": 0,
"semi": [2, "always"],
"curly": 0,
"space-before-keywords": 2,
"space-before-function-paren": [2, {"anonymous": "always",
"named": "never"}],
"comma-dangle": 0,
"camelcase": [2, {"properties": "always"}],
"id-length": 0,
"no-shadow": 0,
"valid-jsdoc": 1,
"eol-last": 2,
"no-multiple-empty-lines": [ 2, { "max": 2, "maxEOF": 1 } ]
}
}