JSHint disable maxlen and quotmark [ci skip]

This commit is contained in:
Steffen van Bergerem 2015-02-10 00:43:06 +01:00
parent ab2e4781f8
commit f27b9dbf79
2 changed files with 4 additions and 0 deletions

View file

@ -8,12 +8,14 @@
"immed": true, "immed": true,
"indent": 2, "indent": 2,
"latedef": true, "latedef": true,
"maxlen": false,
"newcap": true, "newcap": true,
"noarg": true, "noarg": true,
"noempty": true, "noempty": true,
"nonbsp": true, "nonbsp": true,
"nonew": false, "nonew": false,
"notypeof": true, "notypeof": true,
"quotmark": false,
"undef": true, "undef": true,
"unused": true, "unused": true,

View file

@ -16,12 +16,14 @@ options:
immed: true immed: true
indent: 2 indent: 2
latedef: true latedef: true
maxlen: false
newcap: true newcap: true
noarg: true noarg: true
noempty: true noempty: true
nonbsp: true nonbsp: true
nonew: false nonew: false
notypeof: true notypeof: true
quotmark: false
undef: true undef: true
unused: true unused: true