Eslint ignore warnings

This commit is contained in:
Adria Navarro 2023-10-27 12:32:38 +02:00
parent c79f37ee9c
commit 7b5b274f8f
2 changed files with 17 additions and 3 deletions

View File

@ -29,8 +29,15 @@
"ecmaVersion": 2019, "ecmaVersion": 2019,
"sourceType": "module", "sourceType": "module",
"allowImportExportEverywhere": true "allowImportExportEverywhere": true
},
"rules": {
"svelte/valid-compile": [
"error",
{
"ignoreWarnings": true
}
]
} }
}, },
{ {
"files": ["**/*.ts"], "files": ["**/*.ts"],
@ -48,7 +55,14 @@
], ],
"rules": { "rules": {
"no-self-assign": "off", "no-self-assign": "off",
"no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_", "destructuredArrayIgnorePattern": "^_" }] "no-unused-vars": [
"error",
{
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_"
}
]
}, },
"globals": { "globals": {
"GeolocationPositionError": true "GeolocationPositionError": true

@ -1 +1 @@
Subproject commit 012417d51c8dd57fe356c87f29fd7376ddaf9c99 Subproject commit ec88461ab3ee341d01a3482c023b82c63d3bbe34