-
Notifications
You must be signed in to change notification settings - Fork 14
/
.eslintrc.json
39 lines (39 loc) · 1.16 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
{
"env": {
"amd": true
},
"extends": "@edx/eslint-config",
"globals": {
"setFixtures": true // added globally by jasmine-jquery (bad)
},
"rules": {
"indent": "off",
"func-names": "off",
"import/no-extraneous-dependencies": "off",
"object-shorthand": "off",
"no-undef": "off",
"no-var": "off",
"one-var": "off",
"prefer-arrow-callback": "off",
"function-paren-newline": "off",
"one-var-declaration-per-line": "off",
"import/no-amd": "off",
"no-param-reassign": "off",
"new-cap": "off",
"comma-dangle": "off",
"object-curly-spacing": "off",
"space-before-function-paren": "off",
"prefer-template": "off",
"operator-linebreak": "off",
"no-multi-spaces": "off",
"prefer-spread": "off",
"prefer-rest-params": "off",
"no-else-return": "off",
"no-multiple-empty-lines": "off",
"prefer-destructuring": "off",
"no-buffer-constructor": "off",
"import/order": "off",
"import/extensions": "off",
"import/no-dynamic-require": "off"
}
}