Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. {
  2. "extends": ["tslint:recommended"],
  3. "defaultSeverity": "warn",
  4. "rulesDirectory": ["codelyzer"],
  5. "rules": {
  6. "array-type": false,
  7. "arrow-parens": false,
  8. "import-blacklist": [true, "rxjs/Rx"],
  9. "max-line-length": [true, 140],
  10. "interface-name": false,
  11. "max-classes-per-file": false,
  12. "member-access": false,
  13. "member-ordering": [
  14. true,
  15. {
  16. "order": [
  17. "static-field",
  18. "instance-field",
  19. "static-method",
  20. "instance-method"
  21. ]
  22. }
  23. ],
  24. "no-consecutive-blank-lines": false,
  25. "no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
  26. "no-empty": false,
  27. "no-inferrable-types": [true, "ignore-params"],
  28. "no-non-null-assertion": true,
  29. "no-redundant-jsdoc": true,
  30. "no-switch-case-fall-through": true,
  31. "no-use-before-declare": true,
  32. "no-var-requires": false,
  33. "object-literal-key-quotes": [true, "as-needed"],
  34. "object-literal-sort-keys": false,
  35. "ordered-imports": false,
  36. "quotemark": [true, "single"],
  37. "trailing-comma": false,
  38. "no-output-on-prefix": true,
  39. "use-input-property-decorator": true,
  40. "use-output-property-decorator": true,
  41. "use-host-property-decorator": true,
  42. "no-input-rename": true,
  43. "no-output-rename": true,
  44. "use-life-cycle-interface": true,
  45. "use-pipe-transform-interface": true,
  46. "component-class-suffix": true,
  47. "directive-class-suffix": true
  48. }
  49. }
  50.  
  51. {
  52. "editor.wordWrap": "on",
  53. "editor.formatOnSave": true,
  54. "editor.tabSize": 2,
  55. "prettier.tslintIntegration": true
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement