Update rules

pull/81/head
MillenniumEarl 2021-03-04 13:07:58 +01:00
parent 6768abb362
commit 6d6459091b
1 changed files with 8 additions and 4 deletions

View File

@ -12,10 +12,14 @@
"prettier"
],
"rules": {
"no-inferrable-types": 0,
"no-console": 1, // Means warning
"prettier/prettier": 2, // Means error
"no-unused-vars": 0
"no-inferrable-types": "off",
"no-console": "warn",
"prettier/prettier": "error",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "warn",
"no-unused-vars": "off",
"no-prototype-builtins": "warn"
},
"overrides": [
{