summaryrefslogtreecommitdiffstats
path: root/module/web/.jshintrc
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-06-09 16:08:59 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-06-09 16:08:59 +0200
commitecfef4a560dece9dd911017efdfc63fcc04bedfc (patch)
tree42d00f155c47a8a80e3a023c841a59f87b73885c /module/web/.jshintrc
parentrestructured webui to single-page-app, removed jinja (diff)
downloadpyload-ecfef4a560dece9dd911017efdfc63fcc04bedfc.tar.xz
adapted to jshint config
Diffstat (limited to 'module/web/.jshintrc')
-rw-r--r--module/web/.jshintrc14
1 files changed, 11 insertions, 3 deletions
diff --git a/module/web/.jshintrc b/module/web/.jshintrc
index 393dc7ee5..0cff430d9 100644
--- a/module/web/.jshintrc
+++ b/module/web/.jshintrc
@@ -3,7 +3,6 @@
"browser": true,
"esnext": true,
"bitwise": true,
- "camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
@@ -14,8 +13,17 @@
"quotmark": "single",
"regexp": true,
"undef": true,
- "unused": true,
"strict": true,
"trailing": true,
- "smarttabs": true
+ "smarttabs": true,
+ "unused": false,
+ "camelcase": false,
+ "-W030": false,
+ "-W015": false,
+ "-W116": false,
+ "predef": [
+ "require",
+ "define",
+ "alert"
+ ]
}