FPSMS-frontend
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.
 
 
 

25 regels
629 B

  1. {
  2. "extends": [
  3. "next/core-web-vitals",
  4. "plugin:@typescript-eslint/recommended",
  5. "prettier"
  6. ],
  7. "plugins": ["prettier", "@typescript-eslint"],
  8. "parser": "@typescript-eslint/parser",
  9. "parserOptions": {
  10. "ecmaVersion": 2020,
  11. "sourceType": "module"
  12. },
  13. "rules": {
  14. "prettier/prettier": [
  15. "error",
  16. {
  17. "endOfLine": "auto"
  18. }
  19. ],
  20. "no-unused-vars": "off",
  21. "@typescript-eslint/no-unused-vars": "warn",
  22. "@typescript-eslint/no-explicit-any": "off",
  23. "@typescript-eslint/explicit-module-boundary-types": "off" // Optional: adjust based on your project's needs
  24. }
  25. }