summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'MLEB/cldr/Gruntfile.js')
-rw-r--r--MLEB/cldr/Gruntfile.js14
1 files changed, 3 insertions, 11 deletions
diff --git a/MLEB/cldr/Gruntfile.js b/MLEB/cldr/Gruntfile.js
index 44a33377..c338ba60 100644
--- a/MLEB/cldr/Gruntfile.js
+++ b/MLEB/cldr/Gruntfile.js
@@ -5,7 +5,6 @@ module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.loadNpmTasks( 'grunt-eslint' );
- grunt.loadNpmTasks( 'grunt-jsonlint' );
grunt.initConfig( {
eslint: {
@@ -13,21 +12,14 @@ module.exports = function ( grunt ) {
cache: true
},
all: [
- '**/*.js',
+ '**/*.{js,json}',
'!node_modules/**',
'!vendor/**'
]
},
- banana: conf.MessagesDirs,
- jsonlint: {
- all: [
- '**/*.json',
- '!node_modules/**',
- '!vendor/**'
- ]
- }
+ banana: conf.MessagesDirs
} );
- grunt.registerTask( 'test', [ 'eslint', 'jsonlint', 'banana' ] );
+ grunt.registerTask( 'test', [ 'eslint', 'banana' ] );
grunt.registerTask( 'default', 'test' );
};