tslint.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "rules": {
  3. "class-name": true,
  4. "curly": true,
  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": true,
  33. "no-var-keyword": true,
  34. "no-require-imports": false,
  35. "one-line": [true,
  36. "check-open-brace",
  37. "check-catch",
  38. "check-whitespace"
  39. ],
  40. "quotemark": [true, "double"],
  41. "radix": false,
  42. "semicolon": true,
  43. "triple-equals": [false, "allow-null-check"],
  44. "variable-name": false,
  45. "whitespace": [true,
  46. "check-branch",
  47. "check-decl",
  48. "check-operator",
  49. "check-separator"
  50. ]
  51. }
  52. }