1.0.0 • Published 2 months ago

@csstools/stylelint-at-risk v1.0.0

Weekly downloads
-
License
MIT-0
Repository
github
Last release
2 months ago

@csstools/stylelint-at-risk

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,
	},
}
1.0.0

2 months ago