postcss-package-autocorrect
v1.0.0
Published
Automatically correct small css errors.
Downloads
2
Readme
postcss-autocorrect
Detects and fixes small CSS errors or foreign character errors.
For example:
.box {
disopaly: flex;
colro: red;
z-inuuuuuuuuuuuuuuudkejx: -15;
}
To
.box {
display: flex;
color: red;
z-index: -15;
}
This is a fallback to fix errors in big files, and not a replacement for good css.