Skip to content

Commit c9ebda0

Browse files
committed
Update VSCode files to match sp-client
1 parent 3c3977e commit c9ebda0

File tree

2 files changed

+42
-10
lines changed

2 files changed

+42
-10
lines changed

.vscode/launch.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Launch",
6+
"type": "node",
7+
"request": "launch",
8+
"program": "${workspaceRoot}/common/node_modules/gulp/bin/gulp.js",
9+
"stopOnEntry": false,
10+
"args": [
11+
],
12+
"cwd": "${workspaceRoot}/gulp-core-build",
13+
"runtimeExecutable": null,
14+
"runtimeArgs": [
15+
"--nolazy"
16+
],
17+
"env": {
18+
"NODE_ENV": "development"
19+
},
20+
"externalConsole": false,
21+
"sourceMaps": false,
22+
"outDir": null
23+
},
24+
{
25+
"name": "Attach",
26+
"type": "node",
27+
"request": "attach",
28+
"port": 5858
29+
}
30+
]
31+
}

.vscode/settings.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1+
// Place your settings in this file to overwrite default and user settings.
12
{
23
// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
34
"editor.tabSize": 2,
5+
// Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping
46
// When enabled, will trim trailing whitespace when you save a file.
57
"files.trimTrailingWhitespace": true,
6-
// Controls whether the editor should render whitespace characters
7-
"editor.renderWhitespace": true,
8-
"editor.insertSpaces": true,
8+
// Controls if the editor should automatically close brackets after opening them
9+
"editor.autoClosingBrackets": false,
910
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the file.exclude setting.
10-
"files.exclude": {
11-
"**/.git": true,
12-
"**/.DS_Store": true
13-
},
14-
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the file.exclude setting.
1511
"search.exclude": {
1612
"**/node_modules": true,
17-
"**/lib": true
13+
"**/bower_components": true,
14+
"dist": true,
15+
"lib": true,
16+
"lib-amd": true,
17+
"temp": true,
18+
"coverage": true
1819
}
19-
}
20+
}

0 commit comments

Comments
 (0)