├── .editorconfig ├── .github ├── .release-drafter.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── settings.yml └── stale.yml ├── .gitignore ├── .huskyrc.yml ├── .lintstagedrc.yml ├── .prettierrc.yml ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── images ├── extensionWindow.png ├── jcasc_icon.png └── settings.png ├── package.json ├── src ├── extension.ts ├── httpError.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/.release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.github/.release-drafter.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | out/ 3 | *.vsix 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /.huskyrc.yml: -------------------------------------------------------------------------------- 1 | hooks: 2 | pre-commit: 'lint-staged' 3 | -------------------------------------------------------------------------------- /.lintstagedrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.lintstagedrc.yml -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /images/extensionWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/images/extensionWindow.png -------------------------------------------------------------------------------- /images/jcasc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/images/jcasc_icon.png -------------------------------------------------------------------------------- /images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/images/settings.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/httpError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/src/httpError.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/jcasc-vscode-extension/HEAD/yarn.lock --------------------------------------------------------------------------------