2015-06-15 21:54:28 +00:00
|
|
|
/*!
|
|
|
|
* Grunt file
|
|
|
|
*
|
|
|
|
* @package CodeEditor
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*jshint node:true */
|
|
|
|
module.exports = function ( grunt ) {
|
2015-10-25 12:09:56 +00:00
|
|
|
var conf = grunt.file.readJSON( 'extension.json' );
|
|
|
|
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
2015-06-15 21:54:28 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
2015-10-25 12:09:56 +00:00
|
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
|
|
|
grunt.loadNpmTasks( 'grunt-jscs' );
|
2015-06-15 21:54:28 +00:00
|
|
|
|
|
|
|
grunt.initConfig( {
|
2015-10-25 12:09:56 +00:00
|
|
|
jshint: {
|
|
|
|
options: {
|
|
|
|
jshintrc: true
|
|
|
|
},
|
|
|
|
all: [
|
|
|
|
'**/*.js',
|
|
|
|
'!node_modules/**',
|
|
|
|
'!modules/ace/**'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
jscs: {
|
|
|
|
src: '<%= jshint.all %>'
|
|
|
|
},
|
2015-06-15 21:54:28 +00:00
|
|
|
banana: conf.MessagesDirs,
|
|
|
|
jsonlint: {
|
|
|
|
all: [
|
|
|
|
'**/*.json',
|
|
|
|
'!node_modules/**'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2015-10-25 12:09:56 +00:00
|
|
|
grunt.registerTask( 'test', [ 'jshint', 'jscs', 'jsonlint', 'banana' ] );
|
2015-06-15 21:54:28 +00:00
|
|
|
grunt.registerTask( 'default', 'test' );
|
|
|
|
};
|