Move jshint logic out of Gruntfile.js and into .jshintrc files
This commit is contained in:
parent
78088820d6
commit
157523cd00
32
ghost/admin/.jshintrc
Normal file
32
ghost/admin/.jshintrc
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
"node": false,
|
||||
"browser": true,
|
||||
"nomen": false,
|
||||
"bitwise": true,
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
"forin": true,
|
||||
"immed": true,
|
||||
"latedef": true,
|
||||
"newcap": true,
|
||||
"noarg": true,
|
||||
"noempty": true,
|
||||
"nonew": true,
|
||||
"plusplus": true,
|
||||
"regexp": true,
|
||||
"undef": true,
|
||||
"unused": true,
|
||||
"trailing": true,
|
||||
"indent": 4,
|
||||
"esnext": true,
|
||||
"onevar": true,
|
||||
"white": true,
|
||||
"globals": {
|
||||
"Ember": true,
|
||||
"Em": true,
|
||||
"DS": true,
|
||||
"$": true,
|
||||
"validator": true,
|
||||
"ic": true
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user