Add some prettier defaults, cleanup vscode settings

This commit is contained in:
Manuel Martin 2023-02-23 12:18:27 +01:00
Родитель 9e53c6cbd0
Коммит 3af9675a70
2 изменённых файлов: 6 добавлений и 7 удалений

Просмотреть файл

@ -1,5 +1,7 @@
{
"printWidth": 120,
"trailingComma": "none",
"arrowParens": "avoid"
"arrowParens": "avoid",
"tabWidth": 2,
"semi": true
}

9
.vscode/settings.json поставляемый
Просмотреть файл

@ -1,10 +1,6 @@
{
// Format on save for Prettier
"editor.formatOnSave": true,
// Disable html formatting for now
"html.format.enable": false,
// Disable the default javascript formatter
"javascript.format.enable": false,
// Using the prettier-vscode plugin as the old eslint integration has been deprecated. More here: https://github.com/prettier/prettier-vscode/issues/870
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascriptreact]": {
@ -19,6 +15,7 @@
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Enable eslint for JavaScript files.
"eslint.enable": true
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features" // Set to esbenp.prettier-vscode when we are ready to reformat all HTML files
}
}