-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.jshintrc
379 lines (377 loc) · 5.76 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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
// vim:set ft=javascript:
{
// Enforcing options
"camelcase": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"forin": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"maxparams": 7,
"maxdepth": 4,
"maxstatements": 12,
"maxcomplexity": 10,
"maxlen": 120,
// Relaxing options
"validthis": true,
// Environments
"browser": true,
"jquery": true,
"devel": true,
"node": true,
"esnext": true
}
/*
* Coding rules
* ============
* This is our coding rules for node.js.
*
* Refered coding rules
* --------------------
* We consider following 3 coding rules.
*
* - Douglas Crockford's coding style.
*
* [Code Conventions for the JavaScript Programming Language](http://javascript.crockford.com/code.html)
* - uupaa's Japanese coding style.
*
* [CodingStyle - uupaa-js - JavaScript Coding Style Guide - JavaScript Library for Casual Creator](https://code.google.com/p/uupaa-js/wiki/CodingStyle)
*
* This refers [The WebKit Open Source Project - WebKit Coding Style Guidelines](http://www.webkit.org/coding/coding-style.html).
* - GitHub's Ruby coding style
*
* [Ruby ・ Styleguide](https://github.com/styleguide/ruby)
*
* [コーディング規約をまとめてみた (Ruby編) - bojovs::blog](http://bojovs.github.io/2012/04/24/ruby-coding-style/)
*
* - [Airbnb JavaScript Style Guide() { }](https://github.com/airbnb/javascript)
*
* .jshintrc
* ---------
* Most rules are written in .jshintrc above.
* Renfer [JSHint Documentation](http://www.jshint.com/docs/).
*
* Line length
* -----------
* 80 chars per line is a soft-limit. 120 chars is a hard-limit.
*
* Operators
* ---------
* Put a space around operators, except
*
* 1. ++i in for loop
* 2. between double negative operators !!
* 3. before comma operator ,
* 4. before function call operator ()
*
* ### Right
* ```
* x + y;
* x && y;
* x === y;
* ! x;
* - x;
* x = y;
* ++ i;
* i += 1;
* !! x;
* func();
* [x, y]
*
* for (i = 0; i < iz; ++i) { short(); }
* for (i = 0; i < iz; ++ i) { short(); }
* ```
*
* ### Wrong
* ```
* !x;
* -x;
* ++i;
* i+=1;
* ! ! x;
* [x , y];
* func ();
*
* for (i = 0; i < iz; ++i) { // This line is OK.
* ++i; // No space.
* }
* ```
*
* Line breaks
* -----------
* Line break after the operator.
*
* ### Right
* ```
* long_long_long_condition &&
* condition;
*
* 'long_long_long_string' +
* 'string';
*
* func().long_long_long_func().
* func().func();
*
* {
* x: x,
* y: y
* };
* ```
*
* ### Wrong
* ```
* long_long_long_condition
* && condition;
*
* 'long_long_long_string'
* + 'string';
*
* func().long_long_long_func()
* .func().func();
*
* {
* x: x
* ,y: y
* };
* ```
*
* Increment and decrement
* -----------------------
* We don't recommend ++ and --. You can use += 1 and -= 1 instead. Put ++ and -- before variables is denied.
*
* ### Right
* ```
* i += i;
* ++ i; // Carefully, this is also OK.
* ```
*
* ### Wrong
* ```
* i+=1; // No space.
* ++i; // No space.
* i ++;
* i++;
* ```
*
* Braces
* ------
* ### Right
* ```
* if (conditions) { short(); }
*
* if (conditions) {
* }
*
* function func() {
* }
*
* [x, y];
*
* {x: x, y: y};
*
* (x && y);
*
* [ ];
*
* { };
*
* { x: x,
* y: y
* };
*
* {
* x: x,
* y: y
* };
* ```
*
* ### Wrong
* ```
* if (conditions)
* {
* }
*
* if (condition &&
* condition ) {
* }
*
* function func()
* {
* }
*
* function func()
* {
* }
*
* [ x, y ];
*
* { x: x, y: y };
*
* ( x && y );
*
* [];
*
* {};
*
* [
* ];
*
* {
* };
* ```
*
* if expression
* -------------
* ### Right
* ```
* if (conditions) {
* sentenses;
* } else {
* sentences;
* }
*
* if (conditions) { short_one_sentense(); }
* ```
*
* ### Wrong
* ```
* if (conditions) // Don't omit braces.
* short();
*
* if (conditions) short(); // Don't omit braces.
*
* if(conditions){ // No spaces.
* sentenses;
* }
*
* if (conditions)
* {
* sentenses;
* }
*
* if (conditions) { short_one_sentence(); }
* else { short_one_sentence(); }
*
* if (conditions) { short(); short(); }
* ```
*
* Function call and definition
* ----------------------------
* ### Right
* ```
* func();
*
* func(arg1, arg2);
*
* function func() {
* }
*
* function func(arg1, arg2) {
* }
*
* func = function () { };
*
* func = function (arg1, arg2) { };
*
* function func() {
* var i;
*
* sentences;
* return v;
* }
* ```
*
* ### Wrong
* ```
* func ();
*
* func ( arg1 , arg2 ) ;
*
* function func () {
* }
*
* function func() {
* };
*
* func = function() { };
*
* function func() {
* var i;
* sentences;
*
* return v; // Don't put empty line before return.
* }
* ```
*
* Define variables
* ----------------
* ```
* 'use strict';
*
* var requires;
* var CONSTANTS;
* var variables for the module;
*
* module body;
*
* exports;
* ```
*
* ### Right
* ```
* function func() {
* var i = 0, iz = 0; // OK. Define all variables in one var, at top of the function.
*
* sentences;
* }
* ```
*
* ### Wrong
* ```
* function func() {
* var i = 0;
* var iz = 0;
* sentences;
* }
*
* function func() {
* sentences;
* var i = 0;
* sentences;
* }
* ```
*
* for-in loop
* -----------
* Do not use slow for-in-if loop. Use [uupaa looper](http://uupaa.hatenablog.com/entry/2012/02/04/145400).
*
* ### Right
* ```
* var i = 0, iz = 0, keys;
*
* keys = Object.keys(obj);
* for (i = 0, iz = keys.length; i < iz; ++i) {
* process keys[i];
* }
* ```
*
* ### Wrong
* ```
* var key;
*
* for (key in obj) {
* if (obj.hasOwnProperty(key)) {
* process key;
* }
* }
* ```
*/