build: Configure banana-checker and jsonlint

Change-Id: I515e8d5d92e3b2ed24a5be2a45072e968b06fdeb
This commit is contained in:
Kunal Mehta 2015-06-17 12:11:19 -07:00
parent 6b2c3ff463
commit b1e72e77d6
3 changed files with 32 additions and 0 deletions

1
.gitignore vendored
View file

@ -3,3 +3,4 @@
*.kate-swp
.*.swp
.idea
node_modules/

19
Gruntfile.js Normal file
View file

@ -0,0 +1,19 @@
/*jshint node:true */
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.loadNpmTasks( 'grunt-jsonlint' );
var conf = grunt.file.readJSON( 'extension.json' );
grunt.initConfig( {
banana: conf.MessagesDirs,
jsonlint: {
all: [
'**/*.json',
'!node_modules/**'
]
}
} );
grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] );
grunt.registerTask( 'default', 'test' );
};

12
package.json Normal file
View file

@ -0,0 +1,12 @@
{
"private": true,
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-banana-checker": "0.2.2",
"grunt-jsonlint": "1.0.4"
}
}