tslint.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "rules": {
  3. "class-name": true,
  4. "curly": false,
  5. "eofline": false,
  6. "forin": false,
  7. "indent": [true, 4],
  8. "label-position": true,
  9. "label-undefined": true,
  10. "max-line-length": false,
  11. "no-arg": true,
  12. "no-bitwise": false,
  13. "no-console": [true,
  14. "debug",
  15. "info",
  16. "time",
  17. "timeEnd",
  18. "trace"
  19. ],
  20. "no-construct": true,
  21. "no-debugger": true,
  22. "no-duplicate-key": true,
  23. "no-duplicate-variable": true,
  24. "no-empty": false,
  25. "no-eval": true,
  26. "no-imports": true,
  27. "no-string-literal": false,
  28. "no-trailing-comma": true,
  29. "no-trailing-whitespace": true,
  30. "no-unused-variable": false,
  31. "no-unreachable": true,
  32. "no-use-before-declare": false,
  33. "one-line": [true,
  34. "check-open-brace",
  35. "check-catch",
  36. "check-whitespace"
  37. ],
  38. "quotemark": [true, "double"],
  39. "radix": false,
  40. "semicolon": true,
  41. "triple-equals": [false, "allow-null-check"],
  42. "variable-name": false,
  43. "whitespace": [true,
  44. "check-branch",
  45. "check-decl",
  46. "check-operator",
  47. "check-separator"
  48. ]
  49. }
  50. }