build: Upgrade eslint-config-wikimedia from 0.10.1 to 0.11.0

Change-Id: I9415c7962bc5b03c12bc8174bffc601ce60e489e
This commit is contained in:
James D. Forrester 2019-04-03 16:25:25 -07:00
parent 1f209ef016
commit 0a9903293d
3 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,6 +1,7 @@
/node_modules/ /node_modules/
/vendor/ /vendor/
/composer.lock /composer.lock
.eslintcache
# Editors # Editors
*.kate-swp *.kate-swp

View file

@ -15,6 +15,10 @@ module.exports = function ( grunt ) {
grunt.initConfig( { grunt.initConfig( {
banana: conf.MessagesDirs, banana: conf.MessagesDirs,
eslint: { eslint: {
options: {
reportUnusedDisableDirectives: true,
cache: true
},
all: [ all: [
'**/*.js', '**/*.js',
'!node_modules/**', '!node_modules/**',

View file

@ -7,7 +7,7 @@
"test": "grunt test" "test": "grunt test"
}, },
"devDependencies": { "devDependencies": {
"eslint-config-wikimedia": "0.10.1", "eslint-config-wikimedia": "0.11.0",
"grunt": "1.0.3", "grunt": "1.0.3",
"grunt-banana-checker": "0.7.0", "grunt-banana-checker": "0.7.0",
"grunt-eslint": "21.0.0", "grunt-eslint": "21.0.0",