chore(dev): update .vscode/settings.json with new taskExplorer settings
This commit is contained in:
parent
ab0b8e12aa
commit
f124af8c2d
115
.vscode/settings.json
vendored
115
.vscode/settings.json
vendored
|
@ -1,59 +1,60 @@
|
||||||
{
|
{
|
||||||
"taskExplorer.exclude": [
|
"taskExplorer.exclude": [
|
||||||
"**/.vscode-test/**",
|
"**/.vscode-test/**",
|
||||||
"**/bin/**",
|
"**/bin/**",
|
||||||
"**/build/**",
|
"**/build/**",
|
||||||
"**/CompiledOutput/**",
|
"**/CompiledOutput/**",
|
||||||
"**/dist/**",
|
"**/dist/**",
|
||||||
"**/doc/**",
|
"**/doc/**",
|
||||||
"**/ext/**",
|
"**/ext/**",
|
||||||
"**/out/**",
|
"**/out/**",
|
||||||
"**/output/**",
|
"**/output/**",
|
||||||
"**/packages/**",
|
"**/packages/**",
|
||||||
"**/release/**",
|
"**/release/**",
|
||||||
"**/releases/**",
|
"**/releases/**",
|
||||||
"**/samples/**",
|
"**/samples/**",
|
||||||
"**/sdks/**",
|
"**/sdks/**",
|
||||||
"**/static/**",
|
"**/static/**",
|
||||||
"**/target/**",
|
"**/target/**",
|
||||||
"**/test/**",
|
"**/test/**",
|
||||||
"**/third_party/**",
|
"**/third_party/**",
|
||||||
"**/vendor/**",
|
"**/vendor/**",
|
||||||
"**/work/**",
|
"**/work/**",
|
||||||
"/workspace/bootstrap/nuget/MyGet.ps1"
|
"/workspace/bootstrap/nuget/MyGet.ps1"
|
||||||
],
|
],
|
||||||
"taskExplorer.enableAnt": false,
|
"taskExplorer.enabledTasks": {
|
||||||
"taskExplorer.enableAppPublisher": false,
|
"ant": false,
|
||||||
"taskExplorer.enablePipenv": false,
|
"bash": false,
|
||||||
"taskExplorer.enableBash": false,
|
"batch": false,
|
||||||
"taskExplorer.enableBatch": false,
|
"composer": false,
|
||||||
"taskExplorer.enableGradle": false,
|
"gradle": false,
|
||||||
"taskExplorer.enableGrunt": false,
|
"grunt": false,
|
||||||
"taskExplorer.enableGulp": false,
|
"gulp": false,
|
||||||
"taskExplorer.enablePerl": false,
|
"make": false,
|
||||||
"taskExplorer.enableMake": false,
|
"maven": false,
|
||||||
"taskExplorer.enableMaven": false,
|
"npm": false,
|
||||||
"taskExplorer.enableNsis": false,
|
"perl": false,
|
||||||
"taskExplorer.enableNpm": false,
|
"pipenv": false,
|
||||||
"taskExplorer.enablePowershell": false,
|
"powershell": false,
|
||||||
"taskExplorer.enablePython": false,
|
"python": false,
|
||||||
"taskExplorer.enableRuby": false,
|
"ruby": false,
|
||||||
"taskExplorer.enableTsc": false,
|
"tsc": false
|
||||||
"taskExplorer.enableWorkspace": true,
|
},
|
||||||
"taskExplorer.enableExplorerView": false,
|
"taskExplorer.enableExplorerView": false,
|
||||||
"taskExplorer.enableSideBar": true,
|
"taskExplorer.enableSideBar": true,
|
||||||
"search.exclude": {
|
"taskExplorer.showLastTasks": false,
|
||||||
"**/.yarn": true,
|
"search.exclude": {
|
||||||
"**/.pnp.*": true
|
"**/.yarn": true,
|
||||||
},
|
"**/.pnp.*": true
|
||||||
"eslint.nodePath": ".yarn/sdks",
|
},
|
||||||
"eslint.validate": [
|
"eslint.nodePath": ".yarn/sdks",
|
||||||
"javascript",
|
"eslint.validate": [
|
||||||
"javascriptreact",
|
"javascript",
|
||||||
"vue"
|
"javascriptreact",
|
||||||
],
|
"vue"
|
||||||
"python.linting.pylintArgs": ["--load-plugins", "pylint_django"],
|
],
|
||||||
"python.testing.pytestEnabled": false,
|
"python.linting.pylintArgs": ["--load-plugins", "pylint_django"],
|
||||||
"python.testing.unittestEnabled": false,
|
"python.testing.pytestEnabled": false,
|
||||||
"python.linting.enabled": true
|
"python.testing.unittestEnabled": false,
|
||||||
|
"python.linting.enabled": true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue