Correct your everyday typos. Check for typos in both properties and values.
.foogee {
heigth: 120px;
colour: blakc;
}
.foogee {
height: 120px;
color: black;
}
postcss([ require('postcss-autocorrect') ])
By default, the plugin only checks for certain typos. Pass your own like this :
postcss([ require('postcss-autocorrect') ])
({
providedList: [
{absolute: ['asbolute']},
{background: ['backrgound', 'backgrund']}
]
}),
You can also set the following, in order to exclude plugin's defaults corrections :
useDefaultList: false,
npm install postcss-autocorrect --save-dev
or
yarn add postcss-autocorrect --dev
See PostCSS docs for examples for your environment.