FPSMS-frontend
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

25 行
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. }