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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2017-10-18 20:34:17 +0300
committerdartcafe <github@dartcafe.de>2017-10-18 20:34:17 +0300
commit4a464e1778e90bcc94b9d550e21ca2372951d31d (patch)
tree968ef90d21f959c47b412658d22098de8a559e59 /js
parentd6af3272d349e991e6b8916e63e29dadf8de597e (diff)
Adding scutinizer config
Diffstat (limited to 'js')
-rw-r--r--js/.jshintrc46
1 files changed, 46 insertions, 0 deletions
diff --git a/js/.jshintrc b/js/.jshintrc
new file mode 100644
index 00000000..374bc066
--- /dev/null
+++ b/js/.jshintrc
@@ -0,0 +1,46 @@
+{
+ "curly": true,
+ "eqeqeq": true,
+ "immed": true,
+ "indent": 4,
+ "latedef": true,
+ "noarg": true,
+ "noempty": true,
+ "nonew": true,
+ "plusplus": false,
+ "node": true,
+ "undef": true,
+ "unused": false,
+ "strict": false,
+ "maxparams": false,
+ "maxdepth": 4,
+ "esversion": 6,
+ "browser": true,
+ "devel": true,
+ "jquery": true,
+ "jasmine": true,
+ "laxbreak": true,
+ "globals": {
+ "jQuery": true,
+ "ICAL": true,
+ "jstz": true,
+ "moment": true,
+ "angular": true,
+ "app": true,
+ "OC": true,
+ "oc_current_user":true,
+ "oc_requesttoken": true,
+ "requestToken": true,
+ "inject": true,
+ "module": true,
+ "t": true,
+ "it": true,
+ "exports": true,
+ "escapeHTML": true,
+ "possible": true,
+ "dav": true,
+ "hslToRgb": true,
+ "autosize": true,
+ "_": true
+ }
+}