2017-01-18 12:52:44 +00:00
|
|
|
/* eslint-env node */
|
2015-10-13 21:11:33 +00:00
|
|
|
module.exports = function ( grunt ) {
|
|
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
2017-01-18 12:52:44 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
|
|
|
grunt.loadNpmTasks( 'grunt-eslint' );
|
|
|
|
grunt.loadNpmTasks( 'grunt-stylelint' );
|
2015-10-13 21:11:33 +00:00
|
|
|
|
|
|
|
grunt.initConfig( {
|
2017-01-18 12:52:44 +00:00
|
|
|
eslint: {
|
2015-10-13 21:11:33 +00:00
|
|
|
all: [
|
2015-10-28 15:49:03 +00:00
|
|
|
'**/*.js',
|
|
|
|
'!node_modules/**'
|
2015-10-13 21:11:33 +00:00
|
|
|
]
|
|
|
|
},
|
2017-01-18 12:52:44 +00:00
|
|
|
stylelint: {
|
|
|
|
all: [
|
|
|
|
'**/*.css',
|
|
|
|
'!node_modules/**'
|
|
|
|
]
|
2015-10-28 19:51:13 +00:00
|
|
|
},
|
2017-01-28 18:08:39 +00:00
|
|
|
banana: {
|
|
|
|
all: [
|
|
|
|
'i18n/',
|
|
|
|
'**/i18n/'
|
|
|
|
]
|
|
|
|
},
|
2015-10-13 21:11:33 +00:00
|
|
|
jsonlint: {
|
|
|
|
all: [
|
|
|
|
'*.json',
|
|
|
|
'**/*.json',
|
|
|
|
'!node_modules/**'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2017-01-18 12:52:44 +00:00
|
|
|
grunt.registerTask( 'test', [ 'eslint', 'stylelint', 'jsonlint', 'banana' ] );
|
2015-10-13 21:11:33 +00:00
|
|
|
grunt.registerTask( 'default', 'test' );
|
|
|
|
};
|