Guest User

Untitled

a guest
Jul 19th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. {
  2. "extends": [
  3. "tslint:recommended"
  4. ],
  5. "linterOptions": {
  6. "exclude": [
  7. "src/*.d.ts"
  8. ]
  9. },
  10. "rulesDirectory": [
  11. "node_modules/codelyzer",
  12. "node_modules/rxjs-tslint"
  13. ],
  14. "rules": {
  15. "trailing-comma": [false, {"multiline": "always", "singleline": "never"}],
  16. "interface-name": [false, "always-prefix"],
  17. "component-class-suffix": true,
  18. // "component-selector": [true, "element", "my", "kebab-case"],
  19. "directive-class-suffix": true,
  20. // "directive-selector": [true, "attribute", "my", "camelCase"],
  21. "import-destructuring-spacing": true,
  22. "no-attribute-parameter-decorator": true,
  23. "no-forward-ref": true,
  24. "no-input-rename": true,
  25. "no-output-rename": true,
  26. "only-arrow-functions": false,
  27. "use-host-property-decorator": true,
  28. "use-input-property-decorator": true,
  29. "use-life-cycle-interface": true,
  30. "use-output-property-decorator": true,
  31. "use-pipe-transform-interface": true,
  32. "no-console": [true,
  33. "time",
  34. "timeEnd",
  35. "trace"
  36. ],
  37. "max-line-length": [
  38. true,
  39. 100
  40. ],
  41. "no-string-literal": false,
  42. "object-literal-sort-keys": false,
  43. "ordered-imports": false,
  44. "quotemark": [
  45. true,
  46. "single",
  47. "avoid-escape"
  48. ],
  49. "variable-name": [
  50. true,
  51. "allow-leading-underscore",
  52. "allow-pascal-case",
  53. "ban-keywords",
  54. "check-format"
  55. ],
  56. "rxjs-collapse-imports": true,
  57. "rxjs-pipeable-operators-only": true,
  58. "rxjs-no-static-observable-methods": true,
  59. "rxjs-proper-imports": true
  60. }
  61. }
Add Comment
Please, Sign In to add comment