8069b003f4
I have created a gulpfile.js with the same tasks of grunt, replaced npm script and finally ad .jshintrc for jshint
22 lines
415 B
Plaintext
22 lines
415 B
Plaintext
{
|
|
"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
|
|
}
|
|
} |