next-app-boilerplate/.eslintrc

12 lines
280 B
Plaintext

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