You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
403 B

  1. {
  2. "defaultSeverity": "error",
  3. "extends": [
  4. "tslint:recommended"
  5. ],
  6. "jsRules": {},
  7. "rules": {
  8. "indent": [
  9. true,
  10. "spaces",
  11. 4
  12. ],
  13. "semicolon": [
  14. false,
  15. "always"
  16. ]
  17. },
  18. "rulesDirectory": [],
  19. "linterOptions": {
  20. "exclude": [
  21. "node_modules/**"
  22. ]
  23. }
  24. }