Skip to content

Commit 78f02e8

Browse files
authored
🔧 Add VSCode settings for Prettier, markdownlint and format-on-save (#128)
1 parent 1d39010 commit 78f02e8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Diff for: ‎.vscode/settings.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"[css][github-actions-workflow][html][javascript][javascriptreact][json][jsonc][markdown][postcss][scss][typescript][typescriptreact][yaml]": {
3+
"editor.defaultFormatter": "esbenp.prettier-vscode",
4+
"editor.minimap.maxColumn": 80,
5+
"editor.rulers": [80]
6+
},
7+
"editor.codeActionsOnSave": {
8+
"source.fixAll": "always",
9+
"source.fixAll.markdownlint": "always",
10+
"source.organizeImports": "always"
11+
},
12+
"editor.formatOnSave": true
13+
}

0 commit comments

Comments
 (0)