We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70257ee commit 4b4c35cCopy full SHA for 4b4c35c
.jshintrc
@@ -0,0 +1,16 @@
1
+// .jshintrc
2
+// Global configuration defaults for the jshint tool.
3
+{
4
+ "node": true,
5
+ "globalstrict": false,
6
+ "indent": 2,
7
+ "expr": true,
8
+ "globals": {
9
+ "expect": true,
10
+ "describe": true,
11
+ "it": true,
12
+ "xit": true,
13
+ "before": true,
14
+ "after": true
15
+ }
16
+}
package.json
@@ -7,6 +7,7 @@
"test": "test"
},
"scripts": {
+ "lint": "jshint lib test",
"test": "mocha"
"repository": {
@@ -30,6 +31,7 @@
30
31
"homepage": "https://github.com/mhfrantz/gremlin-graphviz",
32
"devDependencies": {
33
"gremlin-v3": "0.0.2",
34
+ "jshint": "^2.5.10",
35
"mocha": "^2.0.1"
36
}
37
0 commit comments