Replace jshint with eslint
Bug: T195542 Change-Id: I8e8d9f2e4917c9f412128c4ea19a55add8724d4f
This commit is contained in:
parent
2c3ff1ec57
commit
8ff3b41a62
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"root": true,
|
||||
"extends": [
|
||||
"wikimedia/client",
|
||||
"wikimedia/jquery"
|
||||
],
|
||||
"globals": {
|
||||
"mw": "readonly",
|
||||
"OO": "readonly"
|
||||
}
|
||||
}
|
10
Gruntfile.js
10
Gruntfile.js
|
@ -4,16 +4,16 @@
|
|||
* @package ContactPage
|
||||
*/
|
||||
|
||||
/*jshint node:true */
|
||||
/* eslint-env node */
|
||||
module.exports = function ( grunt ) {
|
||||
var conf = grunt.file.readJSON( 'extension.json' );
|
||||
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
||||
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
||||
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
||||
grunt.loadNpmTasks( 'grunt-eslint' );
|
||||
|
||||
var conf = grunt.file.readJSON( 'extension.json' );
|
||||
grunt.initConfig( {
|
||||
banana: conf.MessagesDirs,
|
||||
jshint: {
|
||||
eslint: {
|
||||
all: [
|
||||
'**/*.js',
|
||||
'!node_modules/**',
|
||||
|
@ -29,6 +29,6 @@ module.exports = function ( grunt ) {
|
|||
}
|
||||
} );
|
||||
|
||||
grunt.registerTask( 'test', [ 'jsonlint', 'banana', 'jshint' ] );
|
||||
grunt.registerTask( 'test', [ 'eslint', 'banana', 'jsonlint' ] );
|
||||
grunt.registerTask( 'default', 'test' );
|
||||
};
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -7,9 +7,11 @@
|
|||
"test": "grunt test"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "6.7.2",
|
||||
"eslint-config-wikimedia": "0.15.0",
|
||||
"grunt": "1.0.4",
|
||||
"grunt-banana-checker": "0.6.0",
|
||||
"grunt-contrib-jshint": "1.1.0",
|
||||
"grunt-jsonlint": "1.1.0"
|
||||
"grunt-banana-checker": "0.8.1",
|
||||
"grunt-eslint": "22.0.0",
|
||||
"grunt-jsonlint": "2.0.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue