.eslintrc.json 516 B

123456789101112131415161718192021222324
  1. {
  2. "root": true,
  3. "parser": "@typescript-eslint/parser",
  4. "parserOptions": {
  5. "ecmaVersion": 6,
  6. "sourceType": "module"
  7. },
  8. "plugins": [
  9. "@typescript-eslint"
  10. ],
  11. "rules": {
  12. "@typescript-eslint/naming-convention": "warn",
  13. "@typescript-eslint/semi": "warn",
  14. "curly": "warn",
  15. "eqeqeq": "warn",
  16. "no-throw-literal": "warn",
  17. "semi": "off"
  18. },
  19. "ignorePatterns": [
  20. "out",
  21. "dist",
  22. "**/*.d.ts"
  23. ]
  24. }