.eslintrc.json 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. {
  2. "env": {
  3. "browser": true,
  4. "es6": 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/adjacent-overload-signatures": "error",
  16. "@typescript-eslint/array-type": "error",
  17. "@typescript-eslint/await-thenable": "error",
  18. "@typescript-eslint/ban-types": "error",
  19. "@typescript-eslint/naming-convention": "error",
  20. "@typescript-eslint/consistent-type-assertions": "error",
  21. "@typescript-eslint/indent": [
  22. "error",
  23. 2,
  24. {
  25. "ArrayExpression": "first",
  26. "ObjectExpression": "first",
  27. "FunctionDeclaration": {
  28. "parameters": "first"
  29. },
  30. "FunctionExpression": {
  31. "parameters": "first"
  32. }
  33. }
  34. ],
  35. "@typescript-eslint/interface-name-prefix": "off",
  36. "@typescript-eslint/member-ordering": "off",
  37. "@typescript-eslint/no-empty-function": "error",
  38. "@typescript-eslint/no-empty-interface": "off",
  39. "@typescript-eslint/no-explicit-any": "off",
  40. "@typescript-eslint/no-inferrable-types": "error",
  41. "@typescript-eslint/no-misused-new": "error",
  42. "@typescript-eslint/no-namespace": "off",
  43. "@typescript-eslint/no-non-null-assertion": "error",
  44. "@typescript-eslint/no-parameter-properties": "off",
  45. "@typescript-eslint/no-unnecessary-type-assertion": "off",
  46. "@typescript-eslint/no-use-before-define": "off",
  47. "@typescript-eslint/no-var-requires": "error",
  48. "@typescript-eslint/prefer-for-of": "off",
  49. "@typescript-eslint/prefer-function-type": "error",
  50. "@typescript-eslint/prefer-namespace-keyword": "error",
  51. "@typescript-eslint/quotes": [
  52. "error",
  53. "single"
  54. ],
  55. "@typescript-eslint/triple-slash-reference": "error",
  56. "@typescript-eslint/unified-signatures": "off",
  57. "arrow-parens": [
  58. "off",
  59. "as-needed"
  60. ],
  61. "camelcase": "error",
  62. "comma-dangle": "off",
  63. "complexity": "off",
  64. "constructor-super": "error",
  65. "curly": [
  66. "error",
  67. "multi-line"
  68. ],
  69. "dot-notation": "off",
  70. "eqeqeq": [
  71. "error",
  72. "smart"
  73. ],
  74. "guard-for-in": "off",
  75. "id-blacklist": [
  76. "error",
  77. "any",
  78. "Number",
  79. "number",
  80. "String",
  81. "string",
  82. "Boolean",
  83. "boolean",
  84. "Undefined",
  85. "undefined"
  86. ],
  87. "id-match": "error",
  88. "import/no-unassigned-import": "off",
  89. "linebreak-style": "off",
  90. "max-classes-per-file": "off",
  91. "max-len": "off",
  92. "new-parens": "error",
  93. "no-bitwise": "off",
  94. "no-caller": "error",
  95. "no-cond-assign": "error",
  96. "no-console": "off",
  97. "no-constant-condition": "error",
  98. "no-control-regex": "error",
  99. "no-debugger": "error",
  100. "no-duplicate-case": "error",
  101. "no-duplicate-imports": "error",
  102. "no-empty": "error",
  103. "no-eval": "error",
  104. "no-fallthrough": "off",
  105. "no-invalid-regexp": "error",
  106. "no-invalid-this": "off",
  107. "no-irregular-whitespace": "error",
  108. "no-multiple-empty-lines": "off",
  109. "no-new-wrappers": "error",
  110. "no-redeclare": "error",
  111. "no-regex-spaces": "error",
  112. "no-return-await": "error",
  113. "no-sequences": "error",
  114. "no-shadow": [
  115. "warn",
  116. {
  117. "hoist": "all"
  118. }
  119. ],
  120. "no-sparse-arrays": "error",
  121. "no-template-curly-in-string": "error",
  122. "no-throw-literal": "error",
  123. "no-trailing-spaces": "error",
  124. "no-undef-init": "error",
  125. "no-underscore-dangle": "error",
  126. "no-unsafe-finally": "error",
  127. "no-unused-expressions": [
  128. "error",
  129. {
  130. "allowShortCircuit": true
  131. }
  132. ],
  133. "no-unused-labels": "error",
  134. "no-var": "error",
  135. "object-shorthand": "error",
  136. "one-var": [
  137. "off",
  138. "never"
  139. ],
  140. "prefer-const": "error",
  141. "quote-props": "off",
  142. "radix": "error",
  143. "space-in-parens": [
  144. "error",
  145. "never"
  146. ],
  147. "spaced-comment": "error",
  148. "use-isnan": "error",
  149. "valid-typeof": "off"
  150. }
  151. }