-
Notifications
You must be signed in to change notification settings - Fork 11
/
.jshintrc
247 lines (169 loc) · 6.34 KB
/
.jshintrc
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
{
// Closely follows https://github.com/jshint/jshint/blob/master/examples/.jshintrc
// ----- Enforcing options -----
// true: Prohibit bitwise operators (&, |, ^, etc.)
"bitwise": true,
// true: Identifiers must be in camelCase
// Allow for snake_case identifiers
"camelcase": false,
// true: Require {} for every new block or scope
"curly": true,
// true: Require triple equals (===) for comparison
"eqeqeq": true,
// true: Require adherance to ECMAScript 3 specification
// Set to true if you need your program to be executable in older browsers such as IE 6-9
"es3": true,
// true: Require filtering for..in loops with obj.hasOwnProperty()
"forin": true,
// true: prohibits overwriting prototypes of native objects such as Array, Date etc.
"freeze": true,
// true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());`
"immed": true,
// {int} Number of spaces to use for indentation
"indent": 4,
// true: Require variables/functions to be defined before being used
// nofunc: Allow use of a function before it is defined (see https://github.com/johnpapa/angularjs-styleguide#style-y034)
"latedef": "nofunc",
// {int} Max cyclomatic complexity per function
"maxcomplexity": 10,
// {int} Max depth of nested blocks (within functions)
"maxdepth": 5,
// {int} Maximum error before stopping (default is 50)
"maxerr": 50,
// {int} Max number of characters per line
"maxlen": 120,
// {int} Max number of formal params allowed per function
"maxparams": 10,
// {int} Max number statements per function
"maxstatements": 50,
// true: Require capitalization of all constructor functions e.g. `new F()`
"newcap": true,
// true: Prohibit use of `arguments.caller` and `arguments.callee`
"noarg": true,
// true: prohibits the use of the comma operator
// This is triggering false positives (see https://github.com/jshint/jshint/issues/2044)
"nocomma": false,
// true: Prohibit use of empty blocks
"noempty": true,
// true: Prohibit "non-breaking whitespace" characters
"nonbsp": true,
// true: Prohibit use of constructors for side-effects (without assignment)
"nonew": true,
// true: Prohibit use of `++` & `--`
"plusplus": false,
// Quotation mark consistency:
// false : do nothing (default)
// true : ensure whatever is used is consistent
// "single" : require single quotes
// "double" : require double quotes
"quotmark": "single",
// true: prohibits the use of the grouping operator for single-expression statements
"singleGroups": false,
// true: Requires all functions run in ES5 Strict Mode
"strict": true,
// true: Require all non-global variables to be declared (prevents global leaks)
"undef": true,
// true: Require all defined variables be used
"unused": true,
// ----- Relaxing options -----
// true: Tolerate Automatic Semicolon Insertion (no semicolons)
"asi": false,
// true: Tolerate assignments where comparisons would be expected
"boss": false,
// true: Allow debugger statements e.g. browser breakpoints
"debug": false,
// true: Tolerate use of `== null`
"eqnull": false,
// true: Allow ES5 syntax (ex: getters and setters)
// Setting explicitly to true throws a warning: "ES5 option is now set per default"
// "es5": true,
// true: Allow ES.next (ES6) syntax (ex: `const`)
"esnext": false,
// true: Tolerate use of `eval` and `new Function()`
"evil": false,
// true: Tolerate `ExpressionStatement` as Programs
"expr": false,
// true: Tolerate defining variables inside control statements
"funcscope": false,
// true: Allow global "use strict" (also enables 'strict')
"globalstrict": false,
// true: Tolerate using the `__iterator__` property
"iterator": false,
// true: Tolerate omitting a semicolon for the last statement of a 1-line block
"lastsemic": false,
// true: Tolerate possibly unsafe line breakings
"laxbreak": false,
// true: Tolerate comma-first style coding
"laxcomma": false,
// true: Tolerate functions being defined in loops
"loopfunc": false,
// true: Allow Mozilla specific syntax (extends and overrides esnext features)
// (ex: `for each`, multiple try/catch, function expression…)
"moz": false,
// true: Tolerate multi-line strings
"multistr": false,
// true: Tolerate invalid typeof operator values
"notypeof": false,
// true: Tolerate generator functions with no yield statement in them
"noyield": false,
// true: Tolerate using the `__proto__` property
"proto": false,
// true: Tolerate script-targeted URLs
"scripturl": false,
// true: Allows re-define variables later in code e.g. `var x=1; x=2;`
"shadow": false,
// true: Tolerate using `[]` notation when it can still be expressed in dot notation
"sub": false,
// true: Tolerate `new function () { ... };` and `new Object;`
"supernew": false,
// true: Tolerate using this in a non-constructor function
"validthis": false,
// true: Suppresses warnings about the use of the with statement
"withstmt": false,
// ----- Environments -----
// Web Browser (window, document, etc)
"browser": true,
// Browserify (node.js code in the browser)
"browserify": false,
// CouchDB
"couch": false,
// Development/debugging (alert, confirm, etc)
"devel": false,
// Dojo Toolkit
"dojo": false,
// Jasmine
"jasmine": false,
// jQuery
"jquery": false,
// Mocha
"mocha": false,
// MooTools
"mootools": false,
// Node.js
"node": false,
// Widely adopted globals (escape, unescape, etc)
"nonstandard": false,
// PhantomJS
"phantom": false,
// Prototype and Scriptaculous
"prototypejs": false,
// QUnit
"qunit": false,
// Rhino
"rhino": false,
// ShellJS
"shelljs": false,
// defines globals for typed array constructors
"typed": false,
// Web Workers
"worker": false,
// Windows Scripting Host
"wsh": false,
// Yahoo User Interface
"yui": false,
// ----- Globals -----
// false: variable as read-only
"globals": {
"angular": false
}
}