Skip to content

Commit 0b1b07e

Browse files
committed
feat: add in vscode settings
1 parent c39046f commit 0b1b07e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.vscode/settings.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.defaultFormatter": "esbenp.prettier-vscode",
4+
5+
"eslint.enable": true,
6+
"eslint.run": "onSave",
7+
"eslint.validate": [
8+
"javascript",
9+
"javascriptreact",
10+
"typescript",
11+
"typescriptreact",
12+
"astro",
13+
"svelte"
14+
],
15+
16+
"editor.codeActionsOnSave": {
17+
"source.fixAll": "always",
18+
"source.fixAll.eslint": "always"
19+
},
20+
21+
"prettier.requireConfig": true,
22+
"prettier.useEditorConfig": true,
23+
}

0 commit comments

Comments
 (0)