.prettierrc.toml 285 B

123456789101112131415
  1. printWidth = 79
  2. tabWidth = 4
  3. useTabs = false
  4. semi = true
  5. singleQuote = false
  6. trailingComma = "all"
  7. arrowParens = "avoid"
  8. proseWrap = "always"
  9. endOfLine = "lf"
  10. htmlWhitespaceSensitivity = "strict"
  11. [[overrides]]
  12. files = ["*.html", "*.njk", "*.xml", "*.json"]
  13. options = { tabWidth = 2 }