Skip to content

Commit f76b7e9

Browse files
authored
chore: vscode settings to help with devx (#1338)
* chore: enable prettier autosave * some more settings
1 parent b2c8dec commit f76b7e9

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint"]
3+
}

.vscode/settings.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"yaml.schemas": {
3-
"https://json.schemastore.org/github-issue-config.json": ".github/ISSUE_TEMPLATE/config.yml"
4-
}
3+
"https://json.schemastore.org/github-issue-config.json": ".github/ISSUE_TEMPLATE/config.yml",
4+
"https://json.schemastore.org/github-workflow.json": ".github/workflows/**/*.yml"
5+
},
6+
"eslint.format.enable": true,
7+
"editor.formatOnSave": true,
8+
"editor.defaultFormatter": "esbenp.prettier-vscode",
9+
"typescript.tsdk": "node_modules/typescript/lib"
510
}

0 commit comments

Comments
 (0)