Set prettier as workspace default formatter (#2854)

* Set prettier as workspace default formatter

* fix: fix conflicts

---------

Co-authored-by: rickstaa <rick.staa@outlook.com>
This commit is contained in:
Alexandr Garbuzov 2023-06-19 10:45:23 +03:00 committed by GitHub
parent d727d178f0
commit 9a1cbaf062
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,6 @@
{
"recommendations": [
"yzhang.markdown-all-in-one"
"yzhang.markdown-all-in-one",
"esbenp.prettier-vscode"
]
}

View file

@ -1,4 +1,5 @@
{
"markdown.extension.toc.levels": "1..3",
"editor.formatOnSave": true
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
}