tslint.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "rules": {
  3. "array-type": [
  4. true,
  5. "array"
  6. ],
  7. "arrow-parens": false,
  8. "no-var-keyword": true,
  9. "ordered-imports": [false],
  10. "trailing-comma": [false],
  11. "class-name": false,
  12. "comment-format": [
  13. true,
  14. "check-space"
  15. ],
  16. "indent": [
  17. true,
  18. "spaces"
  19. ],
  20. "no-eval": true,
  21. "no-internal-module": true,
  22. "no-trailing-whitespace": true,
  23. "no-unsafe-finally": true,
  24. "one-line": [
  25. true,
  26. "check-open-brace",
  27. "check-whitespace"
  28. ],
  29. "quotemark": [
  30. true,
  31. "single"
  32. ],
  33. "semicolon": [ false ],
  34. "triple-equals": [
  35. true,
  36. "allow-null-check"
  37. ],
  38. "typedef-whitespace": [
  39. true,
  40. {
  41. "call-signature": "nospace",
  42. "index-signature": "nospace",
  43. "parameter": "nospace",
  44. "property-declaration": "nospace",
  45. "variable-declaration": "nospace"
  46. }
  47. ],
  48. "variable-name": [
  49. true,
  50. "ban-keywords"
  51. ],
  52. "whitespace": [
  53. true,
  54. "check-branch",
  55. "check-decl",
  56. "check-separator",
  57. "check-type"
  58. ]
  59. },
  60. "jsRules": {
  61. "triple-equals": [
  62. true,
  63. "allow-null-check"
  64. ]
  65. },
  66. "defaultSeverity": "warning"
  67. }