-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtilt-js-lint-rules.json
151 lines (142 loc) · 5.4 KB
/
tilt-js-lint-rules.json
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"rules" : {
"no-comma-dangle" : 0,
"no-cond-assign" : 0,
"no-console" : 0,
"no-constant-condition" : 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-inner-declarations" : 0,
"no-invalid-regexp" : 0,
"no-irregular-whitespace" : 0,
"no-negated-in-lhs" : 0,
"no-obj-calls" : 0,
"no-regex-spaces" : 0,
"no-reserved-keys" : 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,
"default-case" : 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-extra-bind" : 0,
"no-fallthrough" : 0,
"no-floating-decimal" : 0,
"no-implied-eval" : 0,
"no-iterator" : 0,
"no-labels" : 0,
"no-lone-blocks" : 0,
"no-loop-func" : 0,
"no-multi-spaces" : 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-process-env" : 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-void" : 0,
"no-warning-comments" : [1, {"terms":["todo","comeback","fixme","whargarbl"],"location":"anywhere"}],
"no-with" : 0,
"radix" : 0,
"vars-on-top" : 0,
"wrap-iife" : 0,
"yoda" : 0,
"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-undefined" : 0,
"no-unused-vars" : 0,
"no-use-before-define" : 0,
"handle-callback-err" : 0,
"no-mixed-requires" : 0,
"no-new-require" : 0,
"no-path-concat" : 0,
"no-process-exit" : 0,
"no-restricted-modules" : 0,
"no-sync" : 0,
"brace-style" : [0, "0tbs", { "allowSingleLine": true }],
"camelcase" : 0,
"comma-spacing" : 0,
"comma-style" : 0,
"consistent-this" : 0,
"eol-last" : 0,
"func-names" : 0,
"func-style" : 0,
"key-spacing" : [0, {"beforeColon": true, "afterColon": true, "align": "colon"}],
"max-nested-callbacks" : 0,
"new-cap" : 0,
"new-parens" : 0,
"no-array-constructor" : 0,
"no-lonely-if" : 0,
"no-mixed-spaces-and-tabs" : 0,
"no-nested-ternary" : 0,
"no-new-object" : 0,
"no-space-before-semi" : 0,
"no-spaced-func" : 0,
"no-ternary" : 0,
"no-trailing-spaces" : 0,
"no-multiple-empty-lines" : 0,
"no-underscore-dangle" : 0,
"no-wrap-func" : 0,
"one-var" : 0,
"padded-blocks" : 0,
"quotes" : [0, "double"],
"quote-props" : [0, "always"],
"semi" : [0, "always"],
"sort-vars" : 0,
"space-after-keywords" : [0, "always"],
"space-before-blocks" : [0, "always"],
"space-in-brackets" : 0,
"space-in-parens" : 0,
"space-infix-ops" : 0,
"space-return-throw-case" : 0,
"space-unary-word-ops" : 0,
"spaced-line-comment" : 0,
"wrap-regex" : 0,
"max-depth" : [0, 5],
"max-len" : [1, 80, 4],
"max-params" : 0,
"max-statements" : [0, 25],
"no-bitwise" : 0,
"no-plusplus" : 0
}
}