summaryrefslogtreecommitdiff
path: root/web-ui/.jshintrc
diff options
context:
space:
mode:
authorFelix Hammerl <fhammerl@thoughtworks.com>2016-02-24 10:54:11 +0100
committerFelix Hammerl <fhammerl@thoughtworks.com>2016-02-24 11:32:05 +0100
commit44dfe4c23716c98c06bde1f5ada4a405041d52d4 (patch)
tree2decff33a47e35e87f3f8c684d6c3120ff606ca7 /web-ui/.jshintrc
parent03855d3df78b4a71b880a068939e8708b0315be9 (diff)
Clean up jshintrc
Diffstat (limited to 'web-ui/.jshintrc')
-rw-r--r--web-ui/.jshintrc15
1 files changed, 8 insertions, 7 deletions
diff --git a/web-ui/.jshintrc b/web-ui/.jshintrc
index 220aedfe..1e2a147d 100644
--- a/web-ui/.jshintrc
+++ b/web-ui/.jshintrc
@@ -1,29 +1,30 @@
{
- "node": true,
"browser": true,
"esnext": true,
"bitwise": true,
- "camelcase": false,
- "curly": false,
+ "curly": true,
"loopfunc": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
- "latedef": false,
"newcap": true,
"noarg": true,
- "quotmark": "single",
"regexp": true,
"smarttabs": true,
- "strict": "function",
+ "strict": true,
"trailing": true,
- "undef": false,
+ "undef": true,
"validthis": true,
"jasmine": true,
+ "node": false,
+ "latedef": false,
"predef": [
+ "require",
+ "console",
"$",
"jQuery",
"define",
+ "Foundation",
"describeComponent",
"describeMixin",
"requirejs",