aboutsummaryrefslogtreecommitdiff
path: root/.config/prettier/config.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.config/prettier/config.yaml')
-rw-r--r--.config/prettier/config.yaml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.config/prettier/config.yaml b/.config/prettier/config.yaml
new file mode 100644
index 0000000..cdfba32
--- /dev/null
+++ b/.config/prettier/config.yaml
@@ -0,0 +1,11 @@
+---
+arrowParens: always # Include parentheses around a sole arrow function parameter.
+bracketSpacing: true # Print spaces between brackets in object literals.
+embeddedLanguageFormatting: off # Never automatically format embedded in markdown code.
+printWidth: 80 # Try to limit the line length to 80.
+proseWrap: always # Always wrap prose in markdown.
+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.