forked from exceljs/exceljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
45 lines (45 loc) · 1.26 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
36
37
38
39
40
41
42
43
44
45
{
"extends": "airbnb",
"rules": {
"func-names": ["off", "never"],
"linebreak-style": ["off"],
"no-var": ["off"],
"arrow-parens": ["off"],
"quote-props": ["off"],
"no-use-before-define": ["off"],
"no-underscore-dangle": ["off"],
"vars-on-top": ["off"],
"no-param-reassign": ["off"],
"prefer-arrow-callback": ["off"],
"comma-dangle": ["off"],
"eol-last": ["off"],
"strict": ["off"],
"indent": ["off"],
"no-multi-assign": ["off"],
"object-shorthand": ["off"],
"prefer-template": ["off"],
"object-curly-spacing": ["off"],
"no-plusplus": ["off"],
"no-unused-expressions": ["off"],
"no-trailing-spaces": ["error", { "skipBlankLines": true }],
"global-require": ["off"],
"no-sparse-arrays": ["off"],
"comma-spacing": ["off"],
"brace-style": ["off"],
"space-before-function-paren": ["off"],
"no-unused-vars": ["off"],
"key-spacing": ["off"],
"object-property-newline": ["off"],
"block-spacing": ["off"],
"consistent-return": ["off"],
"keyword-spacing": ["off"],
"semi": ["off"],
"no-path-concat": ["off"],
"prefer-rest-params": ["off"],
"max-len": [1, 160, 2, {"ignoreComments": true}]
},
"globals": {
"describe": true,
"it": true
}
}