aboutsummaryrefslogtreecommitdiff
path: root/node_modules/urix/.jshintrc
blob: 9d1a61836149b0083826e08f8c9ce441e104c986 (plain)
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
{
	"bitwise": true,
	"camelcase": true,
	"curly": false,
	"eqeqeq": true,
	"es3": false,
	"forin": true,
	"immed": false,
	"indent": false,
	"latedef": "nofunc",
	"newcap": false,
	"noarg": true,
	"noempty": true,
	"nonew": false,
	"plusplus": false,
	"quotmark": true,
	"undef": true,
	"unused": "vars",
	"strict": false,
	"trailing": true,
	"maxparams": 5,
	"maxdepth": false,
	"maxstatements": false,
	"maxcomplexity": false,
	"maxlen": 100,

	"asi": true,
	"expr": true,
	"globalstrict": true,
	"smarttabs": true,
	"sub": true,

	"node": true,
	"globals": {
		"describe": false,
		"it": false,
		"before": false,
		"beforeEach": false,
		"after": false,
		"afterEach": false
	}
}