tslint.json 479 B

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