install eslint comments

This commit is contained in:
Ulf Gebhardt 2024-11-02 23:18:08 +01:00
parent 2550575660
commit 4950a1eb60
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
3 changed files with 39 additions and 5 deletions

View File

@ -1,4 +1,3 @@
// eslint-disable-next-line no-undef
module.exports = { module.exports = {
env: { env: {
browser: true, browser: true,
@ -7,7 +6,7 @@ module.exports = {
extends: [ extends: [
'standard', 'standard',
'eslint:recommended', 'eslint:recommended',
// 'plugin:@eslint-community/eslint-comments/recommended', 'plugin:@eslint-community/eslint-comments/recommended',
// 'plugin:@typescript-eslint/recommended', // 'plugin:@typescript-eslint/recommended',
// 'plugin:import/recommended', // 'plugin:import/recommended',
// 'plugin:import/typescript', // 'plugin:import/typescript',
@ -56,9 +55,9 @@ module.exports = {
// ignores: ['+Page'], // ignores: ['+Page'],
// }, // },
// ], // ],
// // Optional eslint-comments rule // Optional eslint-comments rule
// '@eslint-community/eslint-comments/no-unused-disable': 'error', '@eslint-community/eslint-comments/no-unused-disable': 'error',
// '@eslint-community/eslint-comments/disable-enable-pair': ['error', { allowWholeFile: true }], '@eslint-community/eslint-comments/disable-enable-pair': ['error', { allowWholeFile: true }],
// // import // // import
// 'import/export': 'error', // 'import/export': 'error',
// 'import/no-deprecated': 'error', // 'import/no-deprecated': 'error',

34
package-lock.json generated
View File

@ -30,6 +30,7 @@
"tw-elements": "^1.0.0" "tw-elements": "^1.0.0"
}, },
"devDependencies": { "devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@types/leaflet": "^1.7.11", "@types/leaflet": "^1.7.11",
"@types/react": "^18.2.0", "@types/react": "^18.2.0",
"@types/react-dom": "^18.0.5", "@types/react-dom": "^18.0.5",
@ -71,6 +72,39 @@
"node": ">=0.10.0" "node": ">=0.10.0"
} }
}, },
"node_modules/@eslint-community/eslint-plugin-eslint-comments": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-4.4.1.tgz",
"integrity": "sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"escape-string-regexp": "^4.0.0",
"ignore": "^5.2.4"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
}
},
"node_modules/@eslint-community/eslint-plugin-eslint-comments/node_modules/escape-string-regexp": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@eslint-community/eslint-utils": { "node_modules/@eslint-community/eslint-utils": {
"version": "4.4.1", "version": "4.4.1",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz",

View File

@ -18,6 +18,7 @@
"author": "Anton Tranelis", "author": "Anton Tranelis",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@types/leaflet": "^1.7.11", "@types/leaflet": "^1.7.11",
"@types/react": "^18.2.0", "@types/react": "^18.2.0",
"@types/react-dom": "^18.0.5", "@types/react-dom": "^18.0.5",