Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "rules": {
  3. "array-type": [true, "array-simple"],
  4. "class-name": true,
  5. "comment-format": [true, "check-space"],
  6. "curly": true,
  7. "eofline": true,
  8. "forin": true,
  9. "indent": [true, "spaces"],
  10. "interface-name": [true, "never-prefix"],
  11. "jsdoc-format": true,
  12. "label-position": true,
  13. "new-parens": true,
  14. "no-angle-bracket-type-assertion": true,
  15. "no-conditional-assignment": true,
  16. "no-construct": true,
  17. "no-debugger": true,
  18. "no-namespace": [true, "allow-declarations"],
  19. "no-reference": true,
  20. "no-require-imports": true,
  21. "no-trailing-whitespace": true,
  22. "no-unused-expression": true,
  23. "no-use-before-declare": false,
  24. "no-var-keyword": true,
  25. "one-variable-per-declaration": [true, "ignore-for-loop"],
  26. "object-literal-shorthand": true,
  27. "ordered-imports": [
  28. true,
  29. {
  30. "named-imports-order": "lowercase-last"
  31. }
  32. ],
  33. "radix": true,
  34. "semicolon": [true, "always", "ignore-interfaces"],
  35. "switch-default": true,
  36. "triple-equals": [true, "allow-null-check"],
  37. "use-isnan": true,
  38. "variable-name": [
  39. true,
  40. "check-format",
  41. "ban-keywords",
  42. "allow-leading-underscore"
  43. ]
  44. }
  45. }