-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.json
More file actions
113 lines (112 loc) · 2.26 KB
/
eslint.json
File metadata and controls
113 lines (112 loc) · 2.26 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"rules": {
"angular-di-notation": [
1,
"arr",
true,
true
],
"no-cond-assign": 0,
"no-console": 0,
"no-constant-condition": 0,
"no-comma-dangle": 0,
"no-control-regex": 0,
"no-debugger": 0,
"no-dupe-keys": 0,
"no-empty": 0,
"no-empty-class": 0,
"no-ex-assign": 0,
"no-extra-boolean-cast": 0,
"no-extra-parens": 0,
"no-extra-semi": 0,
"no-func-assign": 0,
"no-invalid-regexp": 0,
"no-negated-in-lhs": 0,
"no-obj-calls": 0,
"no-regex-spaces": 0,
"no-sparse-arrays": 0,
"no-unreachable": 0,
"use-isnan": 0,
"valid-jsdoc": 0,
"valid-typeof": 0,
"block-scoped-var": 0,
"complexity": 0,
"consistent-return": 0,
"curly": 0,
"dot-notation": 0,
"eqeqeq": 0,
"guard-for-in": 0,
"no-alert": 0,
"no-caller": 0,
"no-div-regex": 0,
"no-else-return": 0,
"no-empty-label": 0,
"no-eq-null": 0,
"no-eval": 0,
"no-extend-native": 0,
"no-fallthrough": 0,
"no-floating-decimal": 0,
"no-implied-eval": 0,
"no-labels": 0,
"no-iterator": 0,
"no-lone-blocks": 0,
"no-loop-func": 0,
"no-multi-str": 0,
"no-native-reassign": 0,
"no-new": 0,
"no-new-func": 0,
"no-new-wrappers": 0,
"no-octal": 0,
"no-octal-escape": 0,
"no-proto": 0,
"no-redeclare": 0,
"no-return-assign": 0,
"no-script-url": 0,
"no-self-compare": 0,
"no-sequences": 0,
"no-unused-expressions": 0,
"no-warning-comments": 0,
"no-with": 0,
"no-yoda": 0,
"radix": 0,
"wrap-iife": 0,
"no-global-strict": 0,
"no-extra-strict": 0,
"strict": 0,
"no-catch-shadow": 0,
"no-delete-var": 0,
"no-label-var": 0,
"no-shadow": 0,
"no-shadow-restricted-names": 0,
"no-undef": 0,
"no-undef-init": 0,
"no-unused-vars": 0,
"no-use-before-define": 0,
"brace-style": 0,
"camelcase": 0,
"consistent-this": 0,
"func-names": 0,
"func-style": 0,
"new-cap": 0,
"new-parens": 0,
"no-nested-ternary": 0,
"no-array-constructor": 0,
"no-new-object": 0,
"no-spaced-func": 0,
"no-space-before-semi": 0,
"no-ternary": 0,
"no-underscore-dangle": 0,
"no-wrap-func": 0,
"quotes": 0,
"quote-props": 0,
"semi": 0,
"sort-vars": 0,
"space-in-brackets": 0,
"space-infix-ops": 0,
"space-return-throw-case": 0,
"space-unary-word-ops": 0,
"max-nested-callbacks": 0,
"one-var": 0,
"wrap-regex": 0
}
}