summaryrefslogtreecommitdiff
path: root/web-ui/.jshintrc
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/.jshintrc')
-rw-r--r--web-ui/.jshintrc37
1 files changed, 37 insertions, 0 deletions
diff --git a/web-ui/.jshintrc b/web-ui/.jshintrc
new file mode 100644
index 00000000..a3714ba9
--- /dev/null
+++ b/web-ui/.jshintrc
@@ -0,0 +1,37 @@
+{
+ "node": true,
+ "browser": true,
+ "esnext": true,
+ "bitwise": true,
+ "camelcase": true,
+ "curly": true,
+ "eqeqeq": true,
+ "immed": true,
+ "indent": 2,
+ "latedef": false,
+ "newcap": true,
+ "noarg": true,
+ "quotmark": "single",
+ "regexp": true,
+ "smarttabs": true,
+ "strict": true,
+ "trailing": true,
+ "undef": true,
+ "validthis": true,
+ "predef": [
+ "$",
+ "jQuery",
+ "before",
+ "beforeEach",
+ "define",
+ "describe",
+ "describeComponent",
+ "describeMixin",
+ "expect",
+ "it",
+ "requirejs",
+ "setupComponent",
+ "spyOn",
+ "spyOnEvent"
+ ]
+}