tslint.json 453 B

123456789101112131415161718192021222324
  1. {
  2. "extends": "@salesforce/dev-config/tslint",
  3. "rules": {
  4. "no-any": false,
  5. "quotemark": {
  6. "options": "double"
  7. },
  8. "ordered-imports": false,
  9. "trailing-comma": [
  10. true,
  11. {
  12. "multiline": {
  13. "objects": "always",
  14. "arrays": "always",
  15. "functions": "never",
  16. "typeLiterals": "ignore"
  17. },
  18. "singleline": "never",
  19. "esSpecCompliant": true
  20. }
  21. ]
  22. }
  23. }