aboutsummaryrefslogtreecommitdiffstats
path: root/.jshintrc
diff options
context:
space:
mode:
authorJeffrey Wilcke <obscuren@users.noreply.github.com>2014-11-15 00:16:28 +0800
committerJeffrey Wilcke <obscuren@users.noreply.github.com>2014-11-15 00:16:28 +0800
commit7ffba22f2d3e246ded4ac8f6df3d9eab5137e838 (patch)
treed73a4963ea4860c8a6e3bde9babd28f405010901 /.jshintrc
parent60198a05b981b59c2b997706c1a728ad3c5b49d7 (diff)
parentdc100f85b3719f38a92223c39eb36d8d4ff24cdb (diff)
downloadgo-tangerine-7ffba22f2d3e246ded4ac8f6df3d9eab5137e838.tar.gz
go-tangerine-7ffba22f2d3e246ded4ac8f6df3d9eab5137e838.tar.zst
go-tangerine-7ffba22f2d3e246ded4ac8f6df3d9eab5137e838.zip
Merge pull request #10 from cubedro/master
NPM module with minification for browser integration.
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc50
1 files changed, 50 insertions, 0 deletions
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 000000000..c0ec5f89d
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,50 @@
+{
+ "predef": [
+ "console",
+ "require",
+ "equal",
+ "test",
+ "testBoth",
+ "testWithDefault",
+ "raises",
+ "deepEqual",
+ "start",
+ "stop",
+ "ok",
+ "strictEqual",
+ "module",
+ "expect",
+ "reject",
+ "impl"
+ ],
+
+ "esnext": true,
+ "proto": true,
+ "node" : true,
+ "browser" : true,
+ "browserify" : true,
+
+ "boss" : true,
+ "curly": false,
+ "debug": true,
+ "devel": true,
+ "eqeqeq": true,
+ "evil": true,
+ "forin": false,
+ "immed": false,
+ "laxbreak": false,
+ "newcap": true,
+ "noarg": true,
+ "noempty": false,
+ "nonew": false,
+ "nomen": false,
+ "onevar": false,
+ "plusplus": false,
+ "regexp": false,
+ "undef": true,
+ "sub": true,
+ "strict": false,
+ "white": false,
+ "shadow": true,
+ "eqnull": true
+} \ No newline at end of file