.eslintrc.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "env": {
  3. "browser": true,
  4. "node": true
  5. },
  6. "parserOptions": {
  7. "ecmaVersion": 2018,
  8. "sourceType": "module",
  9. "ecmaFeatures": {
  10. "impliedStrict": true
  11. }
  12. },
  13. "rules": {
  14. "indent": "off",
  15. "arrow-parens": [
  16. "off",
  17. "as-needed"
  18. ],
  19. "brace-style": "off",
  20. "comma-spacing": "off",
  21. "space-infix-ops": "error",
  22. "comma-dangle": "off",
  23. "eqeqeq": [
  24. "error",
  25. "smart"
  26. ],
  27. "import/order": "off",
  28. "no-eval": "warn",
  29. "no-new-wrappers": "warn",
  30. "no-trailing-spaces": "error",
  31. "no-unsafe-finally": "warn",
  32. "no-var": "error",
  33. "spaced-comment": "error",
  34. "semi": "warn",
  35. "no-restricted-syntax": [
  36. "error",
  37. {
  38. "selector": "ExportDefaultDeclaration",
  39. "message": "Default exports are not allowed"
  40. }
  41. ]
  42. },
  43. "overrides": [
  44. {
  45. "files": ["**/*.ts", "**/*.tsx"],
  46. "parser": "@typescript-eslint/parser",
  47. "parserOptions": {
  48. "project": ["tsconfig.json", "tsconfig.commonjs.json"],
  49. "sourceType": "module"
  50. },
  51. "plugins": [
  52. "@typescript-eslint"
  53. ],
  54. "rules": {
  55. "@typescript-eslint/ban-types": "off",
  56. "@typescript-eslint/class-name-casing": "off",
  57. "@typescript-eslint/indent": [
  58. "error",
  59. 4
  60. ],
  61. "@typescript-eslint/member-delimiter-style": [
  62. "off",
  63. {
  64. "multiline": {
  65. "delimiter": "none",
  66. "requireLast": true
  67. },
  68. "singleline": {
  69. "delimiter": "semi",
  70. "requireLast": false
  71. }
  72. }
  73. ],
  74. "@typescript-eslint/prefer-namespace-keyword": "warn",
  75. "@typescript-eslint/quotes": [
  76. "error",
  77. "single",
  78. {
  79. "avoidEscape": true,
  80. "allowTemplateLiterals": true
  81. }
  82. ],
  83. "@typescript-eslint/semi": [
  84. "off",
  85. null
  86. ],
  87. "@typescript-eslint/type-annotation-spacing": "error",
  88. "@typescript-eslint/brace-style": [
  89. "error",
  90. "1tbs", { "allowSingleLine": true }
  91. ],
  92. "@typescript-eslint/comma-spacing": "error"
  93. }
  94. }
  95. ]
  96. }