Fix jshint deprecatoins

This commit is contained in:
Alexander Belyaev 2015-07-11 21:57:30 -04:00 committed by Jonathan Garbee
parent abc1a0e3c1
commit 990a0fc79a
2 changed files with 3 additions and 4 deletions

View File

@ -4,5 +4,7 @@
"validateLineBreaks": "LF",
"validateIndentation": 2,
"excludeFiles": ["node_modules/**"],
"maximumLineLength": 130
"maximumLineLength": 130,
"requireCamelCaseOrUpperCaseIdentifiers": true,
"validateQuoteMarks": "'"
}

View File

@ -3,14 +3,11 @@
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"newcap": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"unused": "vars",
"strict": true,