We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd940b0 commit b2cebfbCopy full SHA for b2cebfb
.jshintrc
@@ -0,0 +1,28 @@
1
+{
2
+ // Environments
3
+ "browser": true,
4
+ "devel": true,
5
+ "worker": true,
6
+
7
+ // Enforcing
8
+ //"maxlen": 80,
9
+ //"quotmark": "single",
10
+ "trailing": true,
11
+ "strict": false,
12
13
+ // Relaxing
14
+ "boss": true,
15
+ "funcscope": true,
16
+ "globalstrict": true,
17
+ "loopfunc": true,
18
+ "maxerr": 1000,
19
+ "nonstandard": true,
20
+ "sub": true,
21
+ "validthis": true,
22
23
+ "globals": {
24
+ "_": false,
25
+ "define" : false,
26
+ "module" : false
27
+ }
28
+}
0 commit comments