We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dab02a5 commit 383a1a3Copy full SHA for 383a1a3
.gitignore
@@ -0,0 +1 @@
1
+/npm-debug.log
.jshintrc
@@ -0,0 +1,19 @@
+{
2
+ "bitwise": true,
3
+ "browser" : true,
4
+ "camelcase": true,
5
+ "curly": true,
6
+ "eqeqeq": true,
7
+ "indent": 4,
8
+ "jquery" : true,
9
+ "latedef": true,
10
+ "maxerr": 50,
11
+ "noarg": true,
12
+ "node" : true,
13
+ "noempty": true,
14
+ "plusplus": false,
15
+ "regexp": true,
16
+ "strict": false,
17
+ "trailing": true,
18
+ "unused": true
19
+}
package.json
@@ -0,0 +1,6 @@
+ "scripts": {
+ "check": "jshint .",
+ "lint": "jshint ."
+ }
0 commit comments