We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c6dcd9 commit 482a776Copy full SHA for 482a776
.hound.yml
@@ -1,9 +1,3 @@
1
java_script:
2
enabled: true
3
config_file: .jshint
4
-
5
-LineLength:
6
- Enabled: false
7
8
-StringLiterals:
9
.jshint
@@ -1,8 +1,28 @@
{
- "smarttabs": true,
- "onecase": true,
+ "asi": true,
+ "bitwise": false,
+ "browser": true,
+ "camelcase": false, // Disabled for now.
"curly": true,
"forin": true,
+ "immed": true,
+ "latedef": true,
10
+ "maxlen": 1000,
11
+ "newcap": true,
12
+ "noarg": true,
13
+ "noempty": false, // Disabled for now.
14
+ "nonew": true,
15
+ "onecase": true,
16
+ "predef": [
17
+ "define",
18
+ "require",
19
+ "console"
20
+ ],
21
+ "quotmark": false,
22
+ "smarttabs": true,
23
"trailing": true,
- "asi": true
24
+ "undef": true,
25
+ "unused": false // Disabled for now
26
}
27
+
28
0 commit comments