Skip to content

Commit 7535aeb

Browse files
WilliamDeckeralxhub
authored andcommitted
ci: correct invalid attributes in prettierrc configuration (angular#56279)
Corrected options for "tabs" to "useTabs" (https://prettier.io/docs/en/options#tabs) and "semicolon" to "semi" (https://prettier.io/docs/en/options#semicolons) as outlined in the Prettier documentation. PR Close angular#56279
1 parent e3f7d68 commit 7535aeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.prettierrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"printWidth": 100,
33
"tabWidth": 2,
4-
"tabs": false,
4+
"useTabs": false,
55
"embeddedLanguageFormatting": "off",
66
"singleQuote": true,
7-
"semicolon": true,
7+
"semi": true,
88
"quoteProps": "preserve",
99
"bracketSpacing": false
1010
}

0 commit comments

Comments
 (0)