enso/.prettierrc.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
469 B
YAML
Raw Permalink Normal View History

overrides:
2022-05-23 05:16:04 +03:00
- files:
- "*.[j|t]s"
- "*.[j|t]sx"
- "*.m[j|t]s"
- "*.c[j|t]s"
options:
2024-07-24 11:47:05 +03:00
plugins: ["prettier-plugin-organize-imports"]
semi: false
2024-07-24 11:47:05 +03:00
tabWidth: 2
singleQuote: true
2024-07-24 11:47:05 +03:00
printWidth: 100
trailingComma: "all"
arrowParens: "avoid"
2024-07-24 11:47:05 +03:00
organizeImportsSkipDestructiveCodeActions: true
experimentalTernaries: true
- files: "*.md"
options:
printWidth: 80
proseWrap: "always"