aboutsummaryrefslogtreecommitdiff
path: root/.config/prettier/config.yaml
blob: 1c2399f71b5d5898bdb5374aee51e5d4446ef951 (plain)
1
2
3
4
5
6
7
8
9
10
---
arrowParens: always     # Include parentheses around a sole arrow function parameter.
bracketSpacing: true    # Print spaces between brackets in object literals.
printWidth: 80          # Try to limit the line length to 80.
semi: true              # Print semicolons at the ends of statements.
singleQuote: false      # Use double quotes instead of single quotes.
tabWidth: 2             # Specify the number of spaces per indentation-level.
trailingComma: es5      # Print trailing commas
useTabs: false          # Indent lines with tabs instead of spaces.
proseWrap: always       # Always wrap prose in markdown.