tslint.json 272 B

123456789101112
  1. {
  2. "rules": {
  3. "object-literal-key-quotes": false
  4. },
  5. "meta": {
  6. "category": "style",
  7. "description": "对象的 key 必须用引号包起来",
  8. "reason": "没必要限制",
  9. "has-fixer": true,
  10. "prettier": true
  11. }
  12. }