mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-23 22:13:34 +00:00
build: Provide a grunt fix
task to auto-fix jscs failures
Change-Id: I29c978a23966adcdcbb3e5b1a95effab1ee2d38b
This commit is contained in:
parent
c488e96a8f
commit
bbfa0773a2
13
Gruntfile.js
13
Gruntfile.js
|
@ -61,7 +61,15 @@ module.exports = function ( grunt ) {
|
|||
]
|
||||
},
|
||||
jscs: {
|
||||
src: '<%= jshint.all %>'
|
||||
fix: {
|
||||
options: {
|
||||
fix: true
|
||||
},
|
||||
src: '<%= jshint.all %>'
|
||||
},
|
||||
main: {
|
||||
src: '<%= jshint.all %>'
|
||||
}
|
||||
},
|
||||
csslint: {
|
||||
options: {
|
||||
|
@ -110,7 +118,8 @@ module.exports = function ( grunt ) {
|
|||
} );
|
||||
|
||||
grunt.registerTask( 'build', [ 'jsduckcatconfig', 'buildloader' ] );
|
||||
grunt.registerTask( 'lint', [ 'jshint', 'jscs', 'csslint', 'banana' ] );
|
||||
grunt.registerTask( 'lint', [ 'jshint', 'jscs:main', 'csslint', 'banana' ] );
|
||||
grunt.registerTask( 'fix', [ 'jscs:fix' ] );
|
||||
grunt.registerTask( 'test', [ 'build', 'lint' ] );
|
||||
grunt.registerTask( 'test-ci', [ 'git-status' ] );
|
||||
grunt.registerTask( 'default', 'test' );
|
||||
|
|
Loading…
Reference in a new issue