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

github.com/nextcloud/twofactor_u2f.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-03-27 22:46:02 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-03-27 22:46:02 +0300
commit27bbfaddbfc9647e11b036fa1c4be0fc2ecaab98 (patch)
treef598d2f9f410464a421880f4240f3c5a7d0893ca /.jshintrc
parent0510cd90c08185d3af983fa338b07ee789c1a037 (diff)
Add .jshintrc config file for scrutinizer
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc28
1 files changed, 28 insertions, 0 deletions
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 0000000..696c009
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,28 @@
+{
+ "camelcase": false,
+ "eqeqeq": true,
+ "immed": true,
+ "latedef": false,
+ "noarg": true,
+ "nonbsp": true,
+ "undef": true,
+ "unused": true,
+ "trailing": true,
+ "maxparams": 5,
+ "curly": true,
+ "maxlen": 120,
+ "indent": 4,
+ "browser": true,
+ "globals": {
+ "console": true,
+ "it": true,
+ "xit": true,
+ "expect": true,
+ "describe": true,
+ "define": true,
+ "beforeEach": true,
+ "afterEach": true
+ },
+ "esversion": 6,
+ "asi": true
+}