fix(config): remove property "unsed-vars" | add conventions

This commit is contained in:
Walid 2022-03-18 16:16:00 +01:00
parent 0f776bd1ea
commit 72cb19ce4f
No known key found for this signature in database
GPG Key ID: 50CE2725C6AF36B0

View File

@ -1,11 +1,10 @@
{ {
"extends": ["next/core-web-vitals", "prettier"], "extends": ["conventions", "next/core-web-vitals", "prettier"],
"plugins": ["prettier"], "plugins": ["prettier"],
"parserOptions": { "project": "./tsconfig.json" }, "parserOptions": { "project": "./tsconfig.json" },
"rules": { "rules": {
"@next/next/no-img-element": "off",
"prettier/prettier": "error", "prettier/prettier": "error",
"no-unused-vars": "warn", "no-console": "off"
"no-console": "off",
"@next/next/no-img-element": "off"
} }
} }