Add jshint config for tasks and remove lint

This commit is contained in:
Tim Schaub
2014-07-31 12:00:37 -06:00
parent 711c4bbc8c
commit 33b68123ac
5 changed files with 53 additions and 34 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"curly": true,
"eqeqeq": true,
"indent": 2,
"latedef": true,
"newcap": true,
"nonew": true,
"quotmark": "single",
"undef": true,
"trailing": true,
"maxlen": 80,
"globals": {
"__dirname": false,
"exports": true,
"module": false,
"process": false,
"require": false
}
}