Added Gulp
I have created a gulpfile.js with the same tasks of grunt, replaced npm script and finally ad .jshintrc for jshint
This commit is contained in:
22
.jshintrc
Normal file
22
.jshintrc
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"curly": false,
|
||||
"eqeqeq": true,
|
||||
"immed": true,
|
||||
"esnext": true,
|
||||
"latedef": "nofunc",
|
||||
"newcap": true,
|
||||
"noarg": true,
|
||||
"sub": true,
|
||||
"undef": true,
|
||||
"eqnull": true,
|
||||
"browser": true,
|
||||
"expr": true,
|
||||
"globals": {
|
||||
"head": false,
|
||||
"module": false,
|
||||
"console": false,
|
||||
"unescape": false,
|
||||
"define": false,
|
||||
"exports": false
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user