aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2022-01-29 01:00:25 -0500
committertdro <tdro@users.noreply.github.com>2022-01-29 01:27:24 -0500
commit2111e3cb93bb3c4564ba433366f94ab6ffd43804 (patch)
treee15a98fbbcce5300342d867f2d1a0ea3a4257d3c /.config
parent0c23bea876d9001e38364dfcbdb0c0dbc45c1d0c (diff)
downloaddotfiles-2111e3cb93bb3c4564ba433366f94ab6ffd43804.tar.gz
dotfiles-2111e3cb93bb3c4564ba433366f94ab6ffd43804.tar.bz2
dotfiles-2111e3cb93bb3c4564ba433366f94ab6ffd43804.zip
.config: Bring back prettier configuration
Diffstat (limited to '.config')
-rw-r--r--.config/prettier/config.yaml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/prettier/config.yaml b/.config/prettier/config.yaml
new file mode 100644
index 0000000..2aa8b6d
--- /dev/null
+++ b/.config/prettier/config.yaml
@@ -0,0 +1,9 @@
+---
+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.