Skip to content

Commit

Permalink
🔧 Add VSCode settings for Prettier, markdownlint and format-on-save (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
NatoBoram authored Nov 1, 2024
1 parent 1d39010 commit 78f02e8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"[css][github-actions-workflow][html][javascript][javascriptreact][json][jsonc][markdown][postcss][scss][typescript][typescriptreact][yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.minimap.maxColumn": 80,
"editor.rulers": [80]
},
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.fixAll.markdownlint": "always",
"source.organizeImports": "always"
},
"editor.formatOnSave": true
}

0 comments on commit 78f02e8

Please sign in to comment.