tslint.json 330 B

123456789101112
  1. {
  2. "extends": "tslint-config-standard",
  3. "rules": {
  4. "no-conditional-assignment": false,
  5. "no-consecutive-blank-lines": false,
  6. "no-unnecessary-type-assertion": false,
  7. "space-before-function-paren": false,
  8. "space-within-parens": false,
  9. "strict-type-predicates": false,
  10. "unified-signatures": false
  11. }
  12. }