Since now we aren't just using ESLint in the context of a pull request (with pronto-eslint), we're also adding the `ignorePatterns` option so it ignores third-party files. Note we're using ESLint 8 because ESLint 9 doesn't support our `.eslintrc` configuration file, which we need because it's required by pronto-eslint. However, when running pronto-eslint, we're using ESLint 6 (I think); this means that now the eslint command we run in development and the one run by pronto might behave differently, particularly if we add rules that have been introduced in ESLint 7 or 8. For now, since we generated the `.eslintrc` file using ESLint 6.0.1, everything works as expected in both situations.
22 lines
522 B
JSON
22 lines
522 B
JSON
{
|
|
"name": "consuldemocracy",
|
|
"dependencies": {
|
|
"blueimp-file-upload": "^9.34.0",
|
|
"foundation-sites": "^6.7.5",
|
|
"jquery": "^3.7.1",
|
|
"jquery-ui": "^1.13.2",
|
|
"jquery-ujs": "^1.2.3",
|
|
"leaflet": "^1.9.4",
|
|
"leaflet.markercluster": "^1.5.3",
|
|
"markdown-it": "^12.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@stylistic/stylelint-plugin": "^2.1.0",
|
|
"eslint": "^8.57.0",
|
|
"postcss-scss": "^4.0.9",
|
|
"stylelint": "^16.3.1",
|
|
"stylelint-order": "^6.0.4",
|
|
"stylelint-scss": "^6.2.1"
|
|
}
|
|
}
|