aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/.jshintrc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node/.jshintrc')
-rw-r--r--src/node/.jshintrc28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/node/.jshintrc b/src/node/.jshintrc
new file mode 100644
index 0000000000..8237e0d2b6
--- /dev/null
+++ b/src/node/.jshintrc
@@ -0,0 +1,28 @@
+{
+ "bitwise": true,
+ "curly": true,
+ "eqeqeq": true,
+ "esnext": true,
+ "freeze": true,
+ "immed": true,
+ "indent": 2,
+ "latedef": "nofunc",
+ "maxlen": 80,
+ "newcap": true,
+ "node": true,
+ "noarg": true,
+ "quotmark": "single",
+ "strict": true,
+ "trailing": true,
+ "undef": true,
+ "unused": "vars",
+ "globals": {
+ /* Mocha-provided globals */
+ "describe": false,
+ "it": false,
+ "before": false,
+ "beforeEach": false,
+ "after": false,
+ "afterEach": false
+ }
+}