-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
71 lines (70 loc) · 1.31 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
globals:
$: true
ApplicationConfiguration: true
Buffer: true
__dirname: true
after: true
afterEach: true
angular: true
before: true
beforeEach: true
console: true
define: true
describe: true
expect: true
exports: true
inject: true
it: true
jQuery: true
module: true
process: true
require: true
setInterval: true
setTimeout: true
rules:
accessor-pairs: 2
block-scoped-var: 2
camelcase: 2
comma-dangle: 0
comma-style: [2, "first"]
complexity: [1, 5]
curly: 2
dot-notation: 2
eqeqeq: 2
global-strict: [2, "always"]
indent: [1, 2]
max-len: [1, 80, 2]
max-params: [1, 4]
no-alert: 1
no-console: 0
no-control-regex: 2
no-div-regex: 2
no-dupe-args: 2
no-dupe-keys: 2
no-duplicate-case: 2
no-empty: 2
no-eval: 2
no-implied-eval: 2
no-invalid-regexp: 2
no-loop-func: 2
no-mixed-spaces-and-tabs: 2
no-multi-spaces: 2
no-multi-str: 2
no-process-exit: 0
no-redeclare: 2
no-regex-spaces: 2
no-script-url: 2
no-self-compare: 2
no-trailing-spaces: 2
no-undef-init: 2
no-undef: 2
no-undefined: 2
quotes: [1, "single"]
semi: [2, "always"]
space-after-keywords: [1, "always"]
space-before-blocks: [1, "always"]
space-before-function-paren: [1, "never"]
strict: [2, "global"]
vars-on-top: 2
wrap-regex: 2
yoda: [1, "never"]