2015-06-20 05:09:03 +00:00
|
|
|
/*jshint node:true */
|
|
|
|
module.exports = function ( grunt ) {
|
|
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
2015-08-26 10:15:16 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
|
|
|
grunt.loadNpmTasks( 'grunt-jscs' );
|
2015-06-20 05:09:03 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
|
|
|
|
|
|
|
grunt.initConfig( {
|
|
|
|
banana: {
|
|
|
|
all: 'i18n/'
|
|
|
|
},
|
2015-08-26 10:15:16 +00:00
|
|
|
jshint: {
|
|
|
|
options: {
|
|
|
|
jshintrc: true
|
|
|
|
},
|
2015-10-25 16:26:26 +00:00
|
|
|
all: [
|
|
|
|
'*.js',
|
|
|
|
'**/*.js',
|
|
|
|
'!node_modules/**'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
jscs: {
|
|
|
|
src: '<%= jshint.all %>'
|
2015-08-26 10:15:16 +00:00
|
|
|
},
|
2015-06-20 05:09:03 +00:00
|
|
|
jsonlint: {
|
|
|
|
all: [
|
|
|
|
'**/*.json',
|
|
|
|
'!node_modules/**'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2015-08-26 10:15:16 +00:00
|
|
|
grunt.registerTask( 'test', [ 'jshint', 'jscs', 'jsonlint', 'banana' ] );
|
2015-06-20 05:09:03 +00:00
|
|
|
grunt.registerTask( 'default', 'test' );
|
|
|
|
};
|