Skip to content

Commit 4dd442d

Browse files
committed
chore: settings
1 parent 8a6b9c5 commit 4dd442d

File tree

5 files changed

+85
-63
lines changed

5 files changed

+85
-63
lines changed

.editorconfig

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.{xml,xsd}]
13+
max_line_length = off
14+
end_of_line = lf
15+
indent_style = space
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
indent_size = 2

.vscode/extensions.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
// See http://go.microsoft.com/fwlink/?LinkId=827846
3-
// for the documentation about the extensions.json format
4-
"recommendations": [
5-
"dbaeumer.vscode-eslint"
6-
]
7-
}
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"dbaeumer.vscode-eslint"
6+
]
7+
}

.vscode/launch.json

Lines changed: 32 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,36 @@
33
// Hover to view descriptions of existing attributes.
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
{
6-
"version": "0.2.0",
7-
"configurations": [
8-
{
9-
"name": "Extension",
10-
"type": "extensionHost",
11-
"request": "launch",
12-
"runtimeExecutable": "${execPath}",
13-
"args": [
14-
"--extensionDevelopmentPath=${workspaceFolder}"
15-
],
16-
"outFiles": [
17-
"${workspaceFolder}/out/**/*.js"
18-
],
19-
"env": {
20-
"DEBUG": "vue-i18n-ally"
21-
},
22-
"preLaunchTask": "npm: watch"
23-
},
24-
{
25-
"name": "Extension Tests",
26-
"type": "extensionHost",
27-
"request": "launch",
28-
"runtimeExecutable": "${execPath}",
29-
"args": [
30-
"--extensionDevelopmentPath=${workspaceFolder}",
31-
"--extensionTestsPath=${workspaceFolder}/out/test"
32-
],
33-
"outFiles": [
34-
"${workspaceFolder}/out/test/**/*.js"
35-
],
36-
"preLaunchTask": "npm: watch"
37-
}
38-
]
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"runtimeExecutable": "${execPath}",
13+
"args": [
14+
"--extensionDevelopmentPath=${workspaceFolder}"
15+
],
16+
"outFiles": [
17+
"${workspaceFolder}/out/**/*.js"
18+
],
19+
"stopOnEntry": false,
20+
"sourceMaps": true,
21+
"preLaunchTask": "npm: watch"
22+
},
23+
{
24+
"name": "Extension Tests",
25+
"type": "extensionHost",
26+
"request": "launch",
27+
"runtimeExecutable": "${execPath}",
28+
"args": [
29+
"--extensionDevelopmentPath=${workspaceFolder}",
30+
"--extensionTestsPath=${workspaceFolder}/out/test"
31+
],
32+
"outFiles": [
33+
"${workspaceFolder}/out/test/**/*.js"
34+
],
35+
"preLaunchTask": "npm: watch"
36+
}
37+
]
3938
}

.vscode/settings.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
// Place your settings in this file to overwrite default and user settings.
22
{
3-
"files.exclude": {
4-
"out": false // set this to true to hide the "out" folder with the compiled JS files
5-
},
6-
"search.exclude": {
7-
"out": true // set this to false to include "out" folder in search results
8-
},
9-
}
3+
"files.exclude": {
4+
"out": false // set this to true to hide the "out" folder with the compiled JS files
5+
},
6+
"search.exclude": {
7+
"out": true // set this to false to include "out" folder in search results
8+
},
9+
"[json]": {
10+
"editor.formatOnSave": true,
11+
"editor.defaultFormatter": "vscode.json-language-features"
12+
},
13+
}

.vscode/tasks.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
// See https://go.microsoft.com/fwlink/?LinkId=733558
22
// for the documentation about the tasks.json format
33
{
4-
"version": "2.0.0",
5-
"tasks": [
6-
{
7-
"type": "npm",
8-
"script": "watch",
9-
"problemMatcher": "$tsc-watch",
10-
"isBackground": true,
11-
"presentation": {
12-
"reveal": "never"
13-
},
14-
"group": {
15-
"kind": "build",
16-
"isDefault": true
17-
}
18-
}
19-
]
20-
}
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "watch",
9+
"problemMatcher": "$tsc-watch",
10+
"isBackground": true,
11+
"presentation": {
12+
"reveal": "never"
13+
},
14+
"group": {
15+
"kind": "build",
16+
"isDefault": true
17+
}
18+
}
19+
]
20+
}

0 commit comments

Comments
 (0)