forked from blackbaud/skyux-sdk-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
42 lines (42 loc) · 1.08 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
{
"extends": "airbnb-base",
"env": {
"jasmine": true
},
"rules": {
"arrow-body-style": "off",
"arrow-parens": "off",
"comma-dangle": "off",
"consistent-return": "off",
"default-case": "off",
"func-names": "off",
"global-require": "off",
"import/newline-after-import": "off",
"import/no-dynamic-require": "off",
"import/order": "off",
"lines-around-directive": "off",
"no-console": "off",
"no-multi-assign": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-use-before-define": "off",
"no-useless-escape": "off",
"object-curly-newline": "off",
"object-shorthand": "off",
"operator-linebreak": "off",
"padded-blocks": "off",
"prefer-arrow-callback": "off",
"prefer-const": "off",
"prefer-destructuring": "off",
"prefer-rest-params": "off",
"prefer-spread": "off",
"prefer-template": "off",
"quote-props": "off",
"quotes": ["error", "single", {
"allowTemplateLiterals": true,
"avoidEscape": true
}],
"spaced-comment": "off",
"strict": "off"
}
}