-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
89 lines (89 loc) · 1.69 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
env:
browser: true
node: true
jquery: true
mocha: true
jasmine: true
ecmaFeatures:
jsx: true
globals:
_: false
EventEmitter: false
Flux: false
React: false
ReactRouter: false
rules:
camelcase:
- 1
- properties: never
comma-dangle: 0
eqeqeq: 1
guard-for-in: 1
max-len:
- 1
- 80
- 4
no-alert: 0
no-cond-assign: 2
no-console: 0
no-constant-condition: 1
no-control-regex: 2
no-debugger: 1
no-delete-var: 1
no-dupe-args: 2
no-dupe-keys: 2
no-duplicate-case: 2
no-else-return: 0
no-empty-character-class: 2
no-empty: 1
no-eq-null: 1
no-eval: 1
no-ex-assign: 2
no-extend-native: 0
no-extra-bind: 1
no-extra-boolean-cast: 2
no-extra-parens: 0
no-extra-semi: 2
no-fallthrough: 1
no-func-assign: 2
no-implicit-coercion: 1
no-inner-declarations: 2
no-invalid-regexp: 2
no-invalid-this: 1
no-irregular-whitespace: 2
no-label-var: 2
no-lone-blocks: 1
no-loop-func: 1
no-native-reassign: 1
no-negated-in-lhs: 2
no-obj-calls: 2
no-octal: 1
no-param-reassign: 0
no-proto: 2
no-redeclare: 1
no-regex-spaces: 2
no-return-assign: 2
no-shadow-restricted-names: 2
no-shadow: 2
no-sparse-arrays: 2
no-undef: 2
no-undefined: 0
no-unexpected-multiline: 1
no-unreachable: 2
no-unused-expressions: 1
no-unused-vars: 0
no-use-before-define: 0
no-useless-call: 1
no-warning-comments: 1
no-with: 2
quotes: 0
semi:
- 2
- always
strict: 0
use-isnan: 1
valid-typeof: 2
vars-on-top: 0
wrap-iife: 0
yoda: 0