Guest User

Untitled

a guest
Jun 25th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. {
  2. "defaultSeverity": "warning",
  3. "extends": [
  4. "tslint:recommended"
  5. ],
  6. "linterOptions": {
  7. "exclude": [
  8. "node_modules/**"
  9. ]
  10. },
  11. "rules": {
  12. "quotemark": [true, "single"],
  13. "indent": [true, "spaces", 2],
  14. "interface-name": false,
  15. "ordered-imports": false,
  16. "object-literal-sort-keys": false,
  17. "no-console": false,
  18. "no-consecutive-blank-lines": false,
  19. "object-literal-key-quotes": [true, "consistent"]
  20. }
  21. }
Add Comment
Please, Sign In to add comment