├── .gitignore ├── .vscode-test.mjs ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.mjs ├── icon.png ├── package.json ├── src ├── extension.ts └── test │ └── extension.test.ts ├── tsconfig.json ├── vsc-extension-quickstart.md └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/.vscode-test.mjs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/src/test/extension.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dhruv9051/file-scavenger/HEAD/webpack.config.js --------------------------------------------------------------------------------