postcss-autocorrect

postcss-autocorrect

Correct your everyday typos ✍️
Download v1.3.0

PostCSS autocorrect Build Status npm

Correct your everyday typos. Check for typos in both properties and values.

.foogee {
    heigth: 120px;
    colour: blakc;
}
.foogee {
    height: 120px;
    color: black;
}

Usage

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,

Installation

npm install postcss-autocorrect --save-dev

or

yarn add postcss-autocorrect --dev

See PostCSS docs for examples for your environment.