Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

version

Warn when features are used that are at risk of being removed or changed.

This rule will be updated with similar warnings if and when they are needed.

Why?

Sometimes a web feature doesn't ship quite right and should be changed.
While at the same time it is very important not to break existing web content.
This plugin aims to warn you when you are using a CSS feature that is at risk of being removed or changed.

Reducing the number of occurrences in the wild makes it more likely that the needed change can be made.

Usage

npm install --save-dev @csstools/stylelint-at-risk

// stylelint.config.js
module.exports = {
	plugins: [
		"@csstools/stylelint-at-risk",
	],
	rules: {
		"@csstools/stylelint-at-risk": true,
	},
}