forked from angular/protractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
28 lines (28 loc) · 675 Bytes
/
.jshintrc
File metadata and controls
28 lines (28 loc) · 675 Bytes
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
{
"unused": true,
"node": true,
"bitwise": true,
"immed": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"trailing": true,
"maxlen": 100,
"boss": true,
"eqnull": true,
"expr": true,
"laxbreak": true,
"loopfunc": true,
"sub": true,
"undef": true,
"quotmark": "single",
"evil": true,
"curly": true,
"esversion": 6,
"predef": ["$", "$$", "angular", "after", "afterAll", "afterEach",
"beforeAll", "beforeEach", "browser", "by", "By", "DartObject",
"describe", "document", "element", "expect", "ExpectedConditions",
"fdescribe", "fit", "it", "jasmine", "protractor", "spyOn",
"xdescribe", "xit"]
}