forked from RafaPolit/game_of_life_kata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
31 lines (31 loc) · 894 Bytes
/
.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
{
"node": true,
"browser": true,
"es5": false,
"esnext": true,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": false,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"globals": {
"angular": true, "describe": true, "beforeEach": true,
"expect": true, "it": true, "inject": true, "spyOn": true,
"$provide": true, "xdescribe": true, "xit": true, "iit": true,
"$":true, "jasmine":true, "afterEach": true, "XDate": true,
"dump": true, "jQuery": true, "Chart": true, "by":true,
"element": true, "browser": true, "Bloodhound": true,
"Dropzone":true, "JSONH": true, "protractor": true, "identity": true,
"isDate": true, "__require":true, "__app": true, "__database_uri": true
}
}