-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.eslintrc
35 lines (35 loc) · 1.01 KB
/
.eslintrc
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
{
"extends": [
"airbnb-base",
"prettier",
"plugin:jasmine/recommended"
],
"plugins": ["prettier", "jasmine"],
"env": {
"browser": true,
"node": true,
"jasmine": true
},
"rules": {
"prefer-destructuring": ["error", {"VariableDeclarator": {"object": false}}],
"class-methods-use-this": "off",
"no-unused-expressions": "off",
"no-underscore-dangle": "off",
"no-plusplus": "off",
"no-multi-assign": "off",
"consistent-return": "off",
"import/no-dynamic-require": "off",
"no-return-assign": "off",
"no-prototype-builtins": "off",
"no-cond-assign": "off",
"no-extend-native": "off",
"func-names": "off",
"no-param-reassign": "off",
"no-continue": "off",
"no-bitwise": "off",
"no-nested-ternary": "off",
"no-labels": "off",
"no-restricted-syntax": "off",
"jasmine/new-line-between-declarations": "off"
}
}