build: Configure banana-checker and jsonlint

Change-Id: Ic62cf36d28c556cb74c89b6deeef49c1fd7324ff
This commit is contained in:
Kunal Mehta 2015-06-19 22:12:20 -07:00
parent d4a81d7c24
commit 720b894591
3 changed files with 33 additions and 0 deletions

1
.gitignore vendored
View file

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

20
Gruntfile.js Normal file
View file

@ -0,0 +1,20 @@
/*jshint node:true */
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.loadNpmTasks( 'grunt-jsonlint' );
grunt.initConfig( {
banana: {
all: 'i18n/'
},
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"
}
}