1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

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,
"sourceType": "module",
"allowImportExportEverywhere": true
},
"rules": {
"svelte/valid-compile": [
"error",
{
"ignoreWarnings": true
}
]
}
},
{
"files": ["**/*.ts"],
@ -48,7 +55,14 @@
],
"rules": {
"no-self-assign": "off",
"no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_", "destructuredArrayIgnorePattern": "^_" }]
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_"
}
]
},
"globals": {
"GeolocationPositionError": true

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