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

17 行
420 B

  1. {
  2. "extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended", "prettier"],
  3. "plugins": ["prettier", "@typescript-eslint"],
  4. "rules": {
  5. // "prettier/prettier": "warn",
  6. "prettier/prettier": [
  7. "error",
  8. {
  9. "endOfLine": "off"
  10. }
  11. ],
  12. "no-unused-vars": "off",
  13. // "@typescript-eslint/no-explicit-any": ["off"],
  14. "@typescript-eslint/no-unused-vars": "warn"
  15. }
  16. }