FPSMS-frontend
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

10 ay önce
10 ay önce
10 ay önce
10 ay önce
10 ay önce
10 ay önce
10 ay önce
12345678910111213141516171819202122232425
  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. }