-
Notifications
You must be signed in to change notification settings - Fork 30
/
.eslintrc.js
44 lines (42 loc) · 1.11 KB
/
.eslintrc.js
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
'use strict';
module.exports = {
extends: 'semistandard',
rules: {
'block-spacing': 1,
'brace-style': 1,
'camelcase': 1,
'comma-dangle': 1,
'comma-spacing': 1,
'curly': 1,
'dot-location': 1,
'eol-last': 1,
'eqeqeq': 1,
'indent': [1, 4],
'key-spacing': 1,
'keyword-spacing': 1,
'no-cond-assign': 1,
'no-extra-boolean-cast': 1,
'no-extra-semi': 1,
'no-inner-declarations': 1,
'no-multi-spaces': 1,
'no-multiple-empty-lines': 1,
'no-path-concat': 1,
'no-return-assign': 1,
'no-trailing-spaces': 1,
'no-unused-vars': 1,
'no-useless-escape': 1,
'object-property-newline': 1,
'one-var': 1,
'operator-linebreak': 1,
'padded-blocks': 1,
'quotes': 1,
'semi': 1,
'space-before-blocks': 1,
'space-before-function-paren': 0,
'space-in-parens': 1,
'space-infix-ops': 1,
'space-unary-ops': 1,
'spaced-comment': 1,
'promise/param-names': 1
}
};