tslint.json 534 B

12345678910111213141516171819
  1. {
  2. "extends": "tslint-config-standard",
  3. "jsRules": true,
  4. "rules": {
  5. "member-ordering": false,
  6. "no-conditional-assignment": false,
  7. "no-consecutive-blank-lines": false,
  8. "no-empty": false,
  9. "no-use-before-declare": false,
  10. "no-unnecessary-type-assertion": false,
  11. "no-unused-expression": {
  12. "options": [ "allow-new", "allow-fast-null-checks" ]
  13. },
  14. "space-before-function-paren": false,
  15. "space-within-parens": false,
  16. "strict-type-predicates": false,
  17. "unified-signatures": false
  18. }
  19. }