Skip to content

Commit

Permalink
fix: align configs for both local and web versions of VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
elwinschmitz authored Mar 13, 2024
1 parent 198ecc0 commit d2785b1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# See: https://prettier.io/docs/en/configuration

arrowParens: 'always'
arrowParens: "always"
editorconfig: true
semi: true
singleQuote: true
trailingComma: 'all'
singleAttributePerLine: true
singleQuote: true
trailingComma: "all"
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"ms-vscode.live-server",
"editorconfig.editorconfig",
"anteprimorac.html-end-tag-labels",
"esbenp.prettier-vscode"
"esbenp.prettier-vscode",
"redhat.vscode-yaml"
]
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"prettier.enable": true
"prettier.enable": true,
"prettier.singleAttributePerLine": true
}

0 comments on commit d2785b1

Please sign in to comment.