.eslintrc 714 B

1234567891011121314151617181920212223242526
  1. {
  2. "parser": "@typescript-eslint/parser",
  3. "extends": [
  4. "plugin:@typescript-eslint/recommended"
  5. ],
  6. "plugins": [
  7. "prettier",
  8. "@typescript-eslint"
  9. ],
  10. "parserOptions": {
  11. "ecmaVersion": 2018,
  12. "sourceType": "module"
  13. },
  14. "rules": {
  15. "no-console": "off",
  16. "prettier/prettier": "error",
  17. "@typescript-eslint/explicit-function-return-type": "off",
  18. "@typescript-eslint/ban-ts-ignore": "off",
  19. "@typescript-eslint/camelcase": "off",
  20. "@typescript-eslint/explicit-module-boundary-types": "off",
  21. "@typescript-eslint/no-explicit-any": "off",
  22. "@typescript-eslint/ban-ts-comment": "off",
  23. "@typescript-eslint/no-var-requires": "off",
  24. "prefer-spread": "off"
  25. }
  26. }