-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
26 lines (23 loc) · 685 Bytes
/
.jshintrc
File metadata and controls
26 lines (23 loc) · 685 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
{
"latedef": true,
"undef": true,
"quotmark": true,
"browser": true,
"devel": "setting development flag since there are console logs",
"devel": true,
"sub": "allowing access to members with [] notation",
"sub": true,
"eqnull": "ignoring x == null as there is plenty of this",
"eqnull": true,
"shadow": "ignored, nearly every loop declares its own i, j or k...",
"shadow": true,
"undef": "avoiding errors for undefined variables because no dependencies set",
"undef": false,
"globals": {
"glMatrixArrayType": false,
"mat3": false,
"mat4": false,
"quat4": false,
"vec3": false
}
}