.eslintrc.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "env": {
  3. "browser": true,
  4. "node": true
  5. },
  6. "parser": "@typescript-eslint/parser",
  7. "parserOptions": {
  8. "project": ["tsconfig.json", "tsconfig.commonjs.json"],
  9. "sourceType": "module"
  10. },
  11. "plugins": [
  12. "@typescript-eslint"
  13. ],
  14. "rules": {
  15. "@typescript-eslint/ban-types": "off",
  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. "semi": "warn"
  74. }
  75. }