Skip to content

Commit dbb3a1a

Browse files
committed
πŸ›πŸ”§ add vscode conf
1 parent 7b372b1 commit dbb3a1a

File tree

5 files changed

+45
-1
lines changed

5 files changed

+45
-1
lines changed

β€Ž.vscode

Lines changed: 0 additions & 1 deletion
This file was deleted.

β€Ž.vscode/extensions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../code-style/.vscode/extensions.json

β€Ž.vscode/launch.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../code-style/.vscode/launch.json

β€Ž.vscode/settings.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"typescript.tsdk": "./node_modules/typescript/lib",
3+
4+
"editor.formatOnSave": true,
5+
"editor.formatOnType": true,
6+
"editor.formatOnPaste": true,
7+
"typescript.format.enable": false,
8+
"javascript.format.enable": false,
9+
"editor.defaultFormatter": "esbenp.prettier-vscode",
10+
11+
"[ruby]": {
12+
"editor.defaultFormatter": "esbenp.prettier-vscode"
13+
},
14+
15+
"files.associations": {
16+
"**/typescript-configs/*.json": "jsonc"
17+
},
18+
"json.schemas": [
19+
{
20+
"fileMatch": ["typescript-configs/*.json"],
21+
"url": "https://json.schemastore.org/tsconfig"
22+
},
23+
{
24+
"fileMatch": ["eslint-config*/*.yaml"],
25+
"url": "https://json.schemastore.org/eslintrc"
26+
}
27+
],
28+
"material-icon-theme.files.associations": {
29+
"eslint-config*/*.yaml": "eslint"
30+
}
31+
}

β€Žcode-style/.vscode/launch.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"configurations": [
3+
{
4+
"type": "node",
5+
"request": "attach",
6+
"name": "Attach",
7+
"skipFiles": ["<node_internals>/**"],
8+
"restart": true,
9+
"continueOnAttach": true
10+
}
11+
]
12+
}

0 commit comments

Comments
Β (0)