.prettierrc 491 B

1234567891011121314151617181920212223
  1. {
  2. "arrowParens": "avoid",
  3. "jsxSingleQuote": false,
  4. "pugAttributeSeparator": "as-needed",
  5. "pugBracketSpacing": false,
  6. "pugClassNotation": "as-is",
  7. "pugIdNotation": "as-is",
  8. "pugSortAttributesBeginning": ["name", "data-type"],
  9. "plugins": ["@prettier/plugin-pug"],
  10. "semi": false,
  11. "singleQuote": true,
  12. "trailingComma": "es5",
  13. "tabWidth": 2,
  14. "useTabs": false,
  15. "overrides": [
  16. {
  17. "files": "*.pug",
  18. "options": {
  19. "useTabs": true
  20. }
  21. }
  22. ]
  23. }