tslint.json 224 B

1234567891011121314
  1. {
  2. "rules": {
  3. "no-string-throw": true,
  4. "no-unused-expression": true,
  5. "no-duplicate-variable": false,
  6. "curly": true,
  7. "class-name": true,
  8. "semicolon": [
  9. true,
  10. "always"
  11. ]
  12. },
  13. "defaultSeverity": "warning"
  14. }