This commit is contained in:
velzie 2024-09-02 15:29:38 -04:00
commit bcbc14a03b
No known key found for this signature in database
GPG key ID: 048413F95F0DDE1F

View file

@ -5,7 +5,6 @@
"rules": {
"no-await-in-loop": "warn",
"no-unused-labels": "warn",
"no-unused-vars": "off",
"quotes": ["error", "double"],
"max-lines-per-function": [
"error",
@ -25,6 +24,14 @@
"no-unreachable": "warn",
"no-undef": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off"
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
}