Guest User

Untitled

a guest
Sep 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. {
  2. "extends": [
  3. "tslint:latest",
  4. "tslint-config-prettier"
  5. ],
  6. "rules": {
  7. "no-any": false,
  8. "ordered-imports": false,
  9. "semicolon": [true, "always"],
  10. "member-ordering": [
  11. true,
  12. {
  13. "order": [
  14. "public-static-field",
  15. "private-static-field",
  16. "instance-field",
  17. "constructor",
  18. "public-static-method",
  19. "private-static-method"
  20. ]
  21. }
  22. ]
  23. }
  24. }
Add Comment
Please, Sign In to add comment