Unused CSS Finder is a Visual Studio Code extension that helps you identify and remove unused CSS classes from your project. It scans your files, finds unused CSS, and marks it as a problem directly in the editor.
- Automatic Scanning: Searches for files
.html
,.jsx
,.tsx
,js
,ts
,php
that could use the currently opened CSS file. - Problem Marking: Identifies unused CSS classes and marks them as problems in VS Code.
- Supports Various File Types: Works with
.css
,.scss
,.less
, and.sass
files.
- Scanning for Relevant Files: The extension looks for files that are in the same folder as currently opened CSS file.
- Fallback to Parent Directories: If no files are found, it searches parent directories up the tree.
- Analyzing Usage: Parses these files to determine which CSS classes are unused.
- Marking Unused CSS: Highlights unused CSS in the editor and lists them in the Problems panel.
- Open Visual Studio Code.
- Go to the Extensions view by clicking on the Extensions icon in the Activity Bar.
- Search for
Unused CSS Finder
. - Click Install to add the extension.
- Reload VS Code to activate the extension.
- Open your CSS file in VS Code.
- The extension automatically scans for unused CSS selectors in the currently opened file.
- Unused selectors are highlighted in your CSS file.
- Review and remove unused CSS to optimize your project.
Contributions are welcome! Please submit issues and pull requests on the GitHub repository.
See LICENSE.txt for license information.