FPSMS-frontend
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

17 wiersze
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. }