tslint.json 220 B

12345678910
  1. {
  2. "rules": {
  3. "no-string-literal": true
  4. },
  5. "meta": {
  6. "category": "functionality",
  7. "description": "禁止出现 `foo['bar']`,必须写成 `foo.bar`",
  8. "has-fixer": true
  9. }
  10. }