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:
parent
0282413b69
commit
8069b003f4
3 changed files with 99 additions and 5 deletions
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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue