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.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
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.
Features
Automatic Scanning: Searches for files .html, .jsx, .tsx, js, ts, php, .vue 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.
Configurable Fallback Search: Option to enable/disable fallback search mechanism when no files are found near the CSS file.
Child Directory Search: Option to include child/sibling directories when performing fallback search.
Custom Search Paths: Specify additional directories to always search for CSS usage.
Screenshots
How It Works
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 (optionally including their child directories).
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.
Configuration
The extension provides the following configuration options:
unusedCssFinder.enableFallbackSearch
Type: boolean
Default: true
Description: Enable fallback search mechanism when no files are found near the CSS file. When enabled, the extension will search parent directories if no relevant files are found in the same directory as the CSS file.
unusedCssFinder.includeChildDirectories
Type: boolean
Default: false
Description: When fallback search is enabled, also search in child directories of parent folders. This is useful when you have a structure like:
parent/
css/
styles.css (current file)
include/
page.php (will be searched when this option is enabled)
assets/
script.js (will be searched when this option is enabled)
unusedCssFinder.additionalSearchPaths
Type: array of strings
Default: []
Description: Additional relative paths (from workspace root) to always search for files that use CSS classes. Useful when you have specific directories that should always be checked regardless of the CSS file location.