An ebook/comic library service and web client
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.

19 lines
379 B

  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-consecutive-blank-lines": false
  18. }
  19. }