Skip to content
Snippets Groups Projects
Commit 13b552c6 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add vscode files

parent 010c7e35
No related branches found
No related tags found
1 merge request!24VS Code
This commit is part of merge request !24. Comments created here will be created in the context of that merge request.
{
/*
* VS Code recommended extensions.
*
* For more information on extension,
* visit: https://code.visualstudio.com/docs/editor/extension-marketplace
*/
"recommendations": [
"angular.ng-template",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"gitlab.gitlab-workflow",
"pkief.material-icon-theme",
"redhat.vscode-yaml",
"timonwong.shellcheck"
]
}
{
/*
* VS Code debugging launch configurations.
*
* For more information on launch configurations, visit:
* https://go.microsoft.com/fwlink/?linkid=830387
*/
"version": "0.2.0",
"configurations": [
// Debug with Microsoft Edge
{
"type": "msedge",
"request": "launch",
"name": "Debug with Edge",
"url": "http://localhost:4200",
"preLaunchTask": "Start example",
"webRoot": "${workspaceFolder}"
},
// Debug with Chrome
{
"type": "chrome",
"request": "launch",
"name": "Debug with Chrome",
"url": "http://localhost:4200",
"preLaunchTask": "Start example",
"webRoot": "${workspaceFolder}"
}
]
}
{
/*
* VS Code settings for nshmp-apps.
*
* For more information on settings,
* visit: https://code.visualstudio.com/docs/getstarted/settings
*/
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
"yaml.format.singleQuote": true,
"editor.rulers": [
{
"column": 100
}
],
"editor.tabSize": 2,
"files.exclude": {
"**/.angular": true,
"**/.DS_Store": true,
"**/.git": true,
"**/junit.xml": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/bazel-out/**": true,
"**/dist/**": true,
"**/aio/src/generated/**": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/bazel-out": true,
"**/dist": true,
"**/aio/src/generated": true,
".history": true
},
"git.ignoreLimitWarning": true
}
{
/*
* VS Code tasks.
*
* For more information on tasks,
* visit: https://code.visualstudio.com/docs/editor/tasks
*/
"version": "2.0.0",
"tasks": [
// Automatically fix linter issues
{
"label": "Automatic lint fix",
"type": "npm",
"script": "fix",
"isBackground": true,
"problemMatcher": ["$tsc"]
},
// Run linter
{
"label": "Run linter",
"type": "npm",
"script": "lint",
"isBackground": true,
"problemMatcher": ["$tsc"]
},
// Start Angular example
{
"label": "Start example",
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"source": "ts",
"applyTo": "closedDocuments",
"fileLocation": ["relative", "${cwd}"],
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "Compiled |Failed to compile."
}
}
}
},
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment