aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2022-03-19 07:19:07 -0400
committertdro <tdro@users.noreply.github.com>2022-03-19 07:19:07 -0400
commitea6180e561bd90154b51fe04e4ed785b3a2f29f4 (patch)
treee4ab821cd40b016f13901bd55b4a208f7b5e22fb
parentb6fff6760f1a51555b57175f0b38b5c3f1dddb2a (diff)
downloaddotfiles-ea6180e561bd90154b51fe04e4ed785b3a2f29f4.tar.gz
dotfiles-ea6180e561bd90154b51fe04e4ed785b3a2f29f4.tar.bz2
dotfiles-ea6180e561bd90154b51fe04e4ed785b3a2f29f4.zip
.config/prettier: Never format code blocks in markdown
-rw-r--r--.config/prettier/config.yaml19
1 files changed, 10 insertions, 9 deletions
diff --git a/.config/prettier/config.yaml b/.config/prettier/config.yaml
index 1c2399f..cdfba32 100644
--- a/.config/prettier/config.yaml
+++ b/.config/prettier/config.yaml
@@ -1,10 +1,11 @@
---
-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.
+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.