-
-
Notifications
You must be signed in to change notification settings - Fork 32
Closed
Labels
acceptedThere is consensus among the team that this change meets the criteria for inclusionThere is consensus among the team that this change meets the criteria for inclusionenhancementNew feature or requestNew feature or request
Description
What rule do you want to change?
no-important
What change do you want to make?
Implement autofix
How do you think the change should be implemented?
Other
Example code
.button {
color: red !important;
}What does the rule currently do for this code?
Currently, the rule reports an error for the usage of !important, but does not offer an autofix.
What will the rule do after it's changed?
After the change, the rule will provide an autofix that removes the !important flag from the declaration, resulting in:
.button {
color: red;
}Participation
- I am willing to submit a pull request to implement this change.
Additional comments
No response
Metadata
Metadata
Assignees
Labels
acceptedThere is consensus among the team that this change meets the criteria for inclusionThere is consensus among the team that this change meets the criteria for inclusionenhancementNew feature or requestNew feature or request
Type
Projects
Status
Complete