Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

19 rader
465 B

  1. import { defineConfig, globalIgnores } from "eslint/config";
  2. import nextVitals from "eslint-config-next/core-web-vitals";
  3. import nextTs from "eslint-config-next/typescript";
  4. const eslintConfig = defineConfig([
  5. ...nextVitals,
  6. ...nextTs,
  7. // Override default ignores of eslint-config-next.
  8. globalIgnores([
  9. // Default ignores of eslint-config-next:
  10. ".next/**",
  11. "out/**",
  12. "build/**",
  13. "next-env.d.ts",
  14. ]),
  15. ]);
  16. export default eslintConfig;