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