forked from microsoft/VoTT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
49 lines (49 loc) · 1.34 KB
/
.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
42
43
44
45
46
47
48
49
{
"extends": "strongloop",
"parser": "babel-eslint",
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"jquery": true
},
"rules": {
"no-unused-vars": "off",
"max-len": "off",
"no-undef": "off",
"radix": "off",
"eqeqeq": "off",
"no-sequences": "off",
"no-redeclare": "off",
"no-cond-assign": "off",
"strict": "off",
"no-inner-declarations": "off",
"no-native-reassign": "off",
"no-octal": "off",
"arrow-spacing": "off",
"indent": "off",
"semi": "off",
"keyword-spacing": "off",
"space-infix-ops": "off",
"no-trailing-spaces": "off",
"quotes": "off",
"eol-last": "off",
"comma-spacing": "off",
"no-multi-spaces": "off",
"spaced-comment": "off",
"space-before-function-paren": "off",
"comma-dangle": "off",
"key-spacing": "off",
"space-in-parens": "off",
"brace-style": "off",
"block-spacing": "off",
"one-var": "off",
"no-spaced-func": "off",
"semi-spacing": "off",
"no-multiple-empty-lines": "off",
"quote-props": "off",
"no-floating-decimal": "off",
"handle-callback-err": "off",
"no-unneeded-ternary": "off"
}
}