-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prettierrc.yaml
23 lines (18 loc) · 915 Bytes
/
.prettierrc.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Configures the Prettier tool with settings not available in the .editorconfig file.
# More info: https://prettier.io/docs/en/configuration.html
# Specify the line length that the printer will wrap on.
# Overrides max_line_length from the .editorconfig file.
# More info: https://prettier.io/docs/en/options.html#print-width
printWidth: 100
# Prefer to use double quotes.
# More info: https://prettier.io/docs/en/options.html#quotes
singleQuote: false
# Only add quotes around object parameters when required.
# More info: https://prettier.io/docs/en/options.html#quote-props
quoteProps: "as-needed"
# Wrap markdown prose if it exceeds the print width.
# More info: https://prettier.io/docs/en/options.html#prose-wrap
proseWrap: "always"
# Allow formatting quoted code embedded in the file.
# More info: https://prettier.io/docs/en/options.html#embedded-language-formatting
embeddedLanguageFormatting: "auto"