Next.js template
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.eslintrc.json 213B

123456789
  1. {
  2. "extends": ["next", "next/core-web-vitals", "eslint:recommended"],
  3. "globals": {
  4. "React": "readonly"
  5. },
  6. "rules": {
  7. "no-unused-vars": [1, { "args": "after-used", "argsIgnorePattern": "^_" }]
  8. }
  9. }