mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Description2
synced 2024-11-23 14:26:44 +00:00
build: Replace jsonlint with eslint
Bug: T220036 Change-Id: I1651fbf89286442b392e6fe90899756705667f04
This commit is contained in:
parent
8db9394a9c
commit
3c124d97bb
6
.eslintrc.json
Normal file
6
.eslintrc.json
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"root": true,
|
||||||
|
"extends": [
|
||||||
|
"wikimedia/client"
|
||||||
|
]
|
||||||
|
}
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@
|
||||||
node_modules/**
|
node_modules/**
|
||||||
vendor/**
|
vendor/**
|
||||||
composer.lock
|
composer.lock
|
||||||
|
/.eslintcache
|
||||||
|
|
13
Gruntfile.js
13
Gruntfile.js
|
@ -1,21 +1,24 @@
|
||||||
/*jshint node:true */
|
/* eslint-env node, es6 */
|
||||||
module.exports = function ( grunt ) {
|
module.exports = function ( grunt ) {
|
||||||
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
grunt.loadNpmTasks( 'grunt-eslint' );
|
||||||
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
||||||
|
|
||||||
grunt.initConfig( {
|
grunt.initConfig( {
|
||||||
banana: {
|
banana: {
|
||||||
all: 'i18n/'
|
all: 'i18n/'
|
||||||
},
|
},
|
||||||
jsonlint: {
|
eslint: {
|
||||||
|
options: {
|
||||||
|
cache: true
|
||||||
|
},
|
||||||
all: [
|
all: [
|
||||||
'**/*.json',
|
'**/*.{js,json}',
|
||||||
'!node_modules/**',
|
'!node_modules/**',
|
||||||
'!vendor/**'
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|
||||||
grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] );
|
grunt.registerTask( 'test', [ 'eslint', 'banana' ] );
|
||||||
grunt.registerTask( 'default', 'test' );
|
grunt.registerTask( 'default', 'test' );
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,4 +5,4 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"description2-desc": "Adds a description meta-tag to MediaWiki pages and into the ParserOutput for other extensions to use"
|
"description2-desc": "Adds a description meta-tag to MediaWiki pages and into the ParserOutput for other extensions to use"
|
||||||
}
|
}
|
||||||
|
|
1267
package-lock.json
generated
1267
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -4,8 +4,9 @@
|
||||||
"test": "grunt test"
|
"test": "grunt test"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"eslint-config-wikimedia": "0.18.1",
|
||||||
"grunt": "1.3.0",
|
"grunt": "1.3.0",
|
||||||
"grunt-banana-checker": "0.9.0",
|
"grunt-banana-checker": "0.9.0",
|
||||||
"grunt-jsonlint": "1.0.7"
|
"grunt-eslint": "23.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue