summaryrefslogtreecommitdiff
path: root/web-ui/.jshintrc
diff options
context:
space:
mode:
authorOla Bini <ola.bini@gmail.com>2014-07-31 19:29:33 -0300
committerOla Bini <ola.bini@gmail.com>2014-07-31 19:29:33 -0300
commit04cf441c5ae18400c6b4865b0b37a71718dc9d46 (patch)
treedd0b0d049ec00389e2d4561b226c46eb1682b997 /web-ui/.jshintrc
parent639a663a4c37020003586438fdcd7ac529a00f10 (diff)
Add web-ui based on previous code
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"
+ ]
+}