1.3.2 • Published 6 years ago

postcss-autocorrect v1.3.2

Weekly downloads
61
License
MIT
Repository
github
Last release
6 years ago

PostCSS autocorrect Build Status

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.