Linter fixes
Some checks failed
Lint / lint (push) Failing after 12s

This commit is contained in:
Julien Valverdé
2025-10-01 18:58:25 +02:00
parent 42c8302705
commit a5df6d04c0
16 changed files with 48 additions and 22 deletions

View File

@@ -9,13 +9,19 @@
"ignoreUnknown": false
},
"formatter": {
"enabled": false,
"indentStyle": "tab"
"enabled": false
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
"recommended": true,
"style": {
"useShorthandFunctionType": "off"
},
"suspicious": {
"noExplicitAny": "off",
"noShadowRestrictedNames": "off"
}
}
},
"javascript": {