Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-09-29 23:49:13 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-09-29 23:49:13 +0400
commitd3ef9b0f79ea8545d6f92e511a5628dc1b20e959 (patch)
tree3055a444402baf41fba5a388d8c28dbfc6eb5aaf /.jshintrc
parent64ee6722916a8f04c5e6de0fbf450a7160cd75d1 (diff)
addin jshintrc - used by scrutinizer
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc33
1 files changed, 33 insertions, 0 deletions
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 000000000..d5da3e308
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,33 @@
+{
+ "camelcase": true,
+ "eqeqeq": true,
+ "immed": true,
+ "latedef": false,
+ "noarg": true,
+ "nonbsp": true,
+ "undef": true,
+ "unused": true,
+ "trailing": true,
+ "maxparams": 5,
+ "curly": true,
+ "jquery": true,
+ "maxlen": 120,
+ "indent": 4,
+ "browser": true,
+ "globals": {
+ "console": true,
+ "it": true,
+ "xit": true,
+ "expect": true,
+ "describe": true,
+ "beforeEach": true,
+ "afterEach": true,
+ "sinon": true,
+ "fakeServer": true,
+ "_": true,
+ "OC": true,
+ "OCA": true,
+ "t": true,
+ "n": true
+ }
+}