Use of all: '.' in Gruntfile.js for eslint config and eslintIgnore in package.json to ignore linting the "vendor/" etc directory. Bug: T203648 Change-Id: I65756ab3b6f413021cedeb22c7933c6cffa2cb78
23 lines
490 B
JSON
23 lines
490 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "grunt test"
|
|
},
|
|
"devDependencies": {
|
|
"eslint-config-wikimedia": "0.5.0",
|
|
"grunt": "1.0.1",
|
|
"grunt-banana-checker": "0.6.0",
|
|
"grunt-eslint": "20.1.0",
|
|
"grunt-jsonlint": "1.1.0",
|
|
"grunt-stylelint": "0.9.0",
|
|
"grunt-svgmin": "5.0.0",
|
|
"stylelint": "8.2.0",
|
|
"stylelint-config-wikimedia": "0.4.2"
|
|
},
|
|
"eslintIgnore": [
|
|
"lib/**",
|
|
"resources/js/ext.uls.webfonts.repository.js",
|
|
"vendor/**"
|
|
]
|
|
}
|