summaryrefslogtreecommitdiff
path: root/.jshintrc
diff options
context:
space:
mode:
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc32
1 files changed, 0 insertions, 32 deletions
diff --git a/.jshintrc b/.jshintrc
deleted file mode 100644
index 375fbdf..0000000
--- a/.jshintrc
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- // Enforcing options
- "eqeqeq": false,
- "forin": true,
- "indent": 4,
- "noarg": true,
- "undef": true,
- "unused": true,
- "trailing": true,
- "evil": true,
- "laxcomma": true,
- "esnext": true,
-
- // Relaxing options
- "onevar": false,
- "asi": false,
- "eqnull": true,
- "expr": false,
- "loopfunc": true,
- "sub": true,
- "browser": true,
- "node": true,
- "globals": {
- "self": true,
- "define": true,
- "describe": true,
- "context": true,
- "it": true,
- "before": true,
- "after": true
- }
-}