Eslint ignore warnings
This commit is contained in:
parent
c79f37ee9c
commit
7b5b274f8f
|
@ -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
|
Loading…
Reference in New Issue