.eslintrc.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "env": {
  3. "browser": true,
  4. "node": true
  5. },
  6. "parser": "@typescript-eslint/parser",
  7. "parserOptions": {
  8. "project": "tsconfig.json",
  9. "sourceType": "module"
  10. },
  11. "plugins": [
  12. "@typescript-eslint"
  13. ],
  14. "rules": {
  15. "@typescript-eslint/ban-types": "warn",
  16. "@typescript-eslint/class-name-casing": "off",
  17. "indent": "off",
  18. "@typescript-eslint/indent": [
  19. "error",
  20. 4
  21. ],
  22. "@typescript-eslint/member-delimiter-style": [
  23. "off",
  24. {
  25. "multiline": {
  26. "delimiter": "none",
  27. "requireLast": true
  28. },
  29. "singleline": {
  30. "delimiter": "semi",
  31. "requireLast": false
  32. }
  33. }
  34. ],
  35. "@typescript-eslint/prefer-namespace-keyword": "warn",
  36. "@typescript-eslint/quotes": [
  37. "error",
  38. "single",
  39. {
  40. "avoidEscape": true,
  41. "allowTemplateLiterals": true
  42. }
  43. ],
  44. "@typescript-eslint/semi": [
  45. "off",
  46. null
  47. ],
  48. "@typescript-eslint/type-annotation-spacing": "error",
  49. "arrow-parens": [
  50. "off",
  51. "as-needed"
  52. ],
  53. "brace-style": "off",
  54. "@typescript-eslint/brace-style": [
  55. "error",
  56. "1tbs", { "allowSingleLine": true }
  57. ],
  58. "comma-spacing": "off",
  59. "@typescript-eslint/comma-spacing": "error",
  60. "space-infix-ops": "error",
  61. "comma-dangle": "off",
  62. "eqeqeq": [
  63. "error",
  64. "smart"
  65. ],
  66. "import/order": "off",
  67. "no-eval": "warn",
  68. "no-new-wrappers": "warn",
  69. "no-trailing-spaces": "error",
  70. "no-unsafe-finally": "warn",
  71. "no-var": "error",
  72. "spaced-comment": "error"
  73. }
  74. }