tslint.json 724 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "extends": [
  3. "../../tslint.json"
  4. ],
  5. "rulesDirectory": [
  6. "./node_modules/codelyzer"
  7. ],
  8. "rules": {
  9. "deprecation": {
  10. "severity": "warn"
  11. },
  12. "import-blacklist": [
  13. true,
  14. "rxjs/Rx"
  15. ],
  16. "indent": [
  17. true,
  18. "spaces"
  19. ],
  20. "no-string-literal": false,
  21. "no-output-on-prefix": true,
  22. "use-input-property-decorator": true,
  23. "use-output-property-decorator": true,
  24. "use-host-property-decorator": true,
  25. "no-input-rename": false,
  26. "no-output-rename": true,
  27. "use-life-cycle-interface": true,
  28. "use-pipe-transform-interface": true,
  29. "component-class-suffix": true,
  30. "directive-class-suffix": true,
  31. "no-floating-promises": false
  32. }
  33. }