mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Interwiki
synced 2024-12-18 01:00:49 +00:00
build: Upgrade eslint-config-wikimedia 0.12.0, drop grunt-jsonlint
Change-Id: Iad84e0d51929ea23c0b54b2b2c235fc840fa1df2
This commit is contained in:
parent
6aaada1b93
commit
fd7bf82ece
14
Gruntfile.js
14
Gruntfile.js
|
@ -2,7 +2,6 @@
|
||||||
module.exports = function ( grunt ) {
|
module.exports = function ( grunt ) {
|
||||||
var conf = grunt.file.readJSON( 'extension.json' );
|
var conf = grunt.file.readJSON( 'extension.json' );
|
||||||
|
|
||||||
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
|
||||||
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
||||||
grunt.loadNpmTasks( 'grunt-eslint' );
|
grunt.loadNpmTasks( 'grunt-eslint' );
|
||||||
grunt.loadNpmTasks( 'grunt-stylelint' );
|
grunt.loadNpmTasks( 'grunt-stylelint' );
|
||||||
|
@ -11,22 +10,15 @@ module.exports = function ( grunt ) {
|
||||||
eslint: {
|
eslint: {
|
||||||
options: {
|
options: {
|
||||||
reportUnusedDisableDirectives: true,
|
reportUnusedDisableDirectives: true,
|
||||||
|
extensions: [ '.js', '.json' ],
|
||||||
cache: true
|
cache: true
|
||||||
},
|
},
|
||||||
all: [
|
all: [
|
||||||
'**/*.js',
|
'**/*.js{,on}',
|
||||||
'!{vendor,node_modules}/**'
|
'!{vendor,node_modules}/**'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
banana: conf.MessagesDirs,
|
banana: conf.MessagesDirs,
|
||||||
jsonlint: {
|
|
||||||
all: [
|
|
||||||
'*.json',
|
|
||||||
'**/*.json',
|
|
||||||
'!node_modules/**',
|
|
||||||
'!vendor/**'
|
|
||||||
]
|
|
||||||
},
|
|
||||||
stylelint: {
|
stylelint: {
|
||||||
all: [
|
all: [
|
||||||
'**/*.css',
|
'**/*.css',
|
||||||
|
@ -36,6 +28,6 @@ module.exports = function ( grunt ) {
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|
||||||
grunt.registerTask( 'test', [ 'eslint', 'jsonlint', 'banana', 'stylelint' ] );
|
grunt.registerTask( 'test', [ 'eslint', 'banana', 'stylelint' ] );
|
||||||
grunt.registerTask( 'default', 'test' );
|
grunt.registerTask( 'default', 'test' );
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,11 +4,10 @@
|
||||||
"test": "grunt test"
|
"test": "grunt test"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint-config-wikimedia": "0.11.0",
|
"eslint-config-wikimedia": "0.12.0",
|
||||||
"grunt": "1.0.4",
|
"grunt": "1.0.4",
|
||||||
"grunt-banana-checker": "0.6.0",
|
"grunt-banana-checker": "0.6.0",
|
||||||
"grunt-eslint": "21.0.0",
|
"grunt-eslint": "21.0.0",
|
||||||
"grunt-jsonlint": "1.1.0",
|
|
||||||
"grunt-stylelint": "0.10.1",
|
"grunt-stylelint": "0.10.1",
|
||||||
"stylelint-config-wikimedia": "0.5.0"
|
"stylelint-config-wikimedia": "0.5.0"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue