Dead Code Hunter - VS Code ExtensionDead Code Hunter is a Visual Studio Code extension designed to help developers track and manage unused code in their projects. It integrates with the VS Code diagnostic system to detect errors, warnings, and dead code (unused variables and functions) across your files and lists them in an easy-to-navigate panel. This allows you to quickly identify and clean up unused code, making your project more efficient and maintainable. Features
Here you can see the Dead Code Hunter panel in action. The panel shows a list of files with errors, warnings, and dead code. You can click on the items to open and fix the corresponding files. You can find the Dead Code Hunter panel in the bottom left of the Activity Bar of VS Code. ![]() Installation1. Install from Visual Studio Code MarketplaceYou can directly install the Dead Code Hunter extension from the Visual Studio Code Marketplace.
2. Install Locally (for Development)If you're working on the extension or want to run it locally:
UsageOpen your project in VS Code. You will see a Dead Code Hunter panel in the Activity Bar. The panel will show:
ConfigurationThis extension automatically detects errors, warnings, and dead code based on the diagnostics provided by VS Code. You do not need to configure any settings to start using it, but you can always customize your diagnostics setup via your VS Code settings (e.g., ESLint or other linters). ContributingContributions are welcome! If you'd like to contribute to the extension, please follow these steps:
LicenseThis extension is licensed under the MIT License. See the LICENSE file for more information. Release package creation (for maintainers)
Known Issues:Currently, unused code is detected using basic heuristics. It may not catch all instances, depending on the language and tooling setup. Future improvements may integrate with advanced linters like ESLint for more thorough dead code detection. Acknowledgements:This extension uses VS Code's Diagnostics API to gather error and warning information. Unused Code Detection is based on diagnostic messages and may be further refined in the future. |