tslint.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "rules": {
  3. "align": false,
  4. "ban": [],
  5. "class-name": true,
  6. "comment-format": [ true, "check-space" ],
  7. "curly": true,
  8. "eofline": true,
  9. "forin": false,
  10. "indent": [ true, "tabs" ],
  11. "interface-name": false,
  12. "jsdoc-format": true,
  13. "label-position": true,
  14. "label-undefined": true,
  15. "max-line-length": false,
  16. "member-access": false,
  17. "member-ordering": false,
  18. "no-any": false,
  19. "no-arg": true,
  20. "no-bitwise": false,
  21. "no-consecutive-blank-lines": true,
  22. "no-console": false,
  23. "no-construct": false,
  24. "no-constructor-vars": true,
  25. "no-debugger": true,
  26. "no-duplicate-key": true,
  27. "no-duplicate-variable": true,
  28. "no-empty": false,
  29. "no-eval": true,
  30. "no-shadowed-variable": false,
  31. "no-string-literal": false,
  32. "no-switch-case-fall-through": false,
  33. "no-trailing-whitespace": true,
  34. "no-unreachable": true,
  35. "no-unused-expression": false,
  36. "no-unused-variable": true,
  37. "no-use-before-declare": false,
  38. "no-var-keyword": true,
  39. "no-var-requires": false,
  40. "object-literal-sort-keys": false,
  41. "one-line": [ true, "check-open-brace", "check-whitespace" ],
  42. "quotemark": [ true, "single" ],
  43. "radix": true,
  44. "semicolon": true,
  45. "trailing-comma": [ true, {
  46. "multiline": "never",
  47. "singleline": "never"
  48. } ],
  49. "triple-equals": [ true, "allow-null-check" ],
  50. "typedef": false,
  51. "typedef-whitespace": [ true, {
  52. "call-signature": "nospace",
  53. "index-signature": "nospace",
  54. "parameter": "nospace",
  55. "property-declaration": "nospace",
  56. "variable-declaration": "nospace"
  57. } ],
  58. "use-strict": false,
  59. "variable-name": false,
  60. "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-type", "check-typecast" ]
  61. }
  62. }