From f27b9dbf797d02aa18076890241e139619714e50 Mon Sep 17 00:00:00 2001 From: Steffen van Bergerem Date: Tue, 10 Feb 2015 00:43:06 +0100 Subject: [PATCH] JSHint disable maxlen and quotmark [ci skip] --- config/.jshint.json | 2 ++ config/jshint.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/config/.jshint.json b/config/.jshint.json index 0232d5b13..f4a747e9f 100644 --- a/config/.jshint.json +++ b/config/.jshint.json @@ -8,12 +8,14 @@ "immed": true, "indent": 2, "latedef": true, + "maxlen": false, "newcap": true, "noarg": true, "noempty": true, "nonbsp": true, "nonew": false, "notypeof": true, + "quotmark": false, "undef": true, "unused": true, diff --git a/config/jshint.yml b/config/jshint.yml index b99a1ba48..59ca50614 100644 --- a/config/jshint.yml +++ b/config/jshint.yml @@ -16,12 +16,14 @@ options: immed: true indent: 2 latedef: true + maxlen: false newcap: true noarg: true noempty: true nonbsp: true nonew: false notypeof: true + quotmark: false undef: true unused: true