├── .eslintrc.json ├── .gitignore ├── .vscode-test.mjs ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── sprig.png └── vs-sprig.png ├── package.json ├── src ├── extension.ts └── test │ └── extension.test.ts ├── test ├── runTest.js └── suite │ ├── extension.test.js │ └── index.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/.vscode-test.mjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/README.md -------------------------------------------------------------------------------- /images/sprig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/images/sprig.png -------------------------------------------------------------------------------- /images/vs-sprig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/images/vs-sprig.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/src/test/extension.test.ts -------------------------------------------------------------------------------- /test/runTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/test/runTest.js -------------------------------------------------------------------------------- /test/suite/extension.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/test/suite/extension.test.js -------------------------------------------------------------------------------- /test/suite/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/test/suite/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/VS-Sprig/HEAD/tsconfig.json --------------------------------------------------------------------------------