mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Move jshint rules into jshintrc and include from Gruntfile.
This commit is contained in:
parent
806cd60474
commit
e782efa614
16
.jshintrc
Normal file
16
.jshintrc
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"curly": true,
|
||||||
|
"eqeqeq": true,
|
||||||
|
"immed": true,
|
||||||
|
"latedef": false,
|
||||||
|
"newcap": true,
|
||||||
|
"noarg": true,
|
||||||
|
"sub": true,
|
||||||
|
"undef": true,
|
||||||
|
"boss": true,
|
||||||
|
"eqnull": true,
|
||||||
|
"browser": true,
|
||||||
|
"globals": {
|
||||||
|
"jQuery": true
|
||||||
|
}
|
||||||
|
}
|
17
Gruntfile.js
17
Gruntfile.js
@ -54,22 +54,7 @@ module.exports = function(grunt) {
|
|||||||
},
|
},
|
||||||
jshint: {
|
jshint: {
|
||||||
all: ['<%= concat.dist.dest %>'],
|
all: ['<%= concat.dist.dest %>'],
|
||||||
options: {
|
options: grunt.file.readJSON('./.jshintrc')
|
||||||
curly: true,
|
|
||||||
eqeqeq: true,
|
|
||||||
immed: true,
|
|
||||||
latedef: true,
|
|
||||||
newcap: true,
|
|
||||||
noarg: true,
|
|
||||||
sub: true,
|
|
||||||
undef: true,
|
|
||||||
boss: true,
|
|
||||||
eqnull: true,
|
|
||||||
browser: true,
|
|
||||||
globals: {
|
|
||||||
jQuery: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user