forked from unsetbit/boilerplate-gulp-angular
-
Notifications
You must be signed in to change notification settings - Fork 1
/
defaultJSHintConfig.js
76 lines (58 loc) · 1.42 KB
/
defaultJSHintConfig.js
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
// Modified from the Airbnb JS Styleguide
module.exports = {
/*
* ENVIRONMENTS
* =================
*/
// Define globals exposed by modern browsers.
browser: true,
// Define globals exposed by Node.js.
node: true,
/*
* ENFORCING OPTIONS
* =================
*/
// Prohibit use of == and != in favor of === and !==.
eqeqeq: true,
// Enforce tab width of 2 spaces.
indent: 2,
// Require capitalized names for constructor functions.
newcap: true,
// Prohibit trailing whitespace.
trailing: true,
// Force all variable names to use either camelCase style or UPPER_CASE
// with underscores.
camelcase: true,
// Enforce use of single quotation marks for strings.
quotmark: 'single',
// Prohibit use of explicitly undeclared variables.
undef: true,
// Warn when variables are defined but never used.
unused: true,
// Enforce line length to 120 characters
maxlen: 120,
// Enforce placing 'use strict' at the top function scope
strict: true,
/*
* RELAXING OPTIONS
* ================
*/
// Prohibit use of a variable before it is defined.
latedef: false,
// Suppress warnings about == null comparisons.
eqnull: true,
globals: {
// Jasmine Globals
jasmine: true,
beforeEach: true,
afterEach: true,
describe: true,
expect: true,
it: true,
spyOn: true,
xdescribe: true,
xit: true,
angular: true,
inject: true
}
};