2015-06-20 04:58:30 +00:00
|
|
|
/*jshint node:true */
|
|
|
|
module.exports = function ( grunt ) {
|
2016-01-19 22:21:07 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
2015-06-20 04:58:30 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
|
|
|
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
|
|
|
|
|
|
|
grunt.initConfig( {
|
2016-01-19 22:21:07 +00:00
|
|
|
jshint: {
|
|
|
|
options: {
|
|
|
|
jshintrc: true
|
|
|
|
},
|
|
|
|
all: [
|
|
|
|
'**/*.js',
|
|
|
|
'!modules/qrcode.js',
|
|
|
|
'!node_modules/**'
|
|
|
|
]
|
|
|
|
},
|
2015-06-20 04:58:30 +00:00
|
|
|
banana: {
|
|
|
|
all: 'i18n/'
|
|
|
|
},
|
|
|
|
jsonlint: {
|
|
|
|
all: [
|
|
|
|
'**/*.json',
|
|
|
|
'!node_modules/**'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2016-01-19 22:21:07 +00:00
|
|
|
grunt.registerTask( 'test', [ 'jshint', 'jsonlint', 'banana' ] );
|
2015-06-20 04:58:30 +00:00
|
|
|
grunt.registerTask( 'default', 'test' );
|
|
|
|
};
|