@dopustim/coffeelint-config
v1.1.0
Published
Configuration file for CoffeeLint
Downloads
4
Maintainers
Readme
@dopustim/coffeelint-config
Configuration file for CoffeeLint
Features
- Provide Errors and Warnings
- 4 spaces for indentation (warning)
- 90 symbols per line (warning)
- Unix linebreaks (warning)
Usage
Install @dopustim/coffeelint-config
package via NPM:
npm install -D coffeelint @dopustim/coffeelint-config
Extend this config in your .coffeelintrc.json
:
{
"extends": "@dopustim/coffeelint-config"
}
Or use your package.json
:
"coffeelintConfig": {
"extends": "@dopustim/coffeelint-config"
}
You can also reassign any rule for your needs:
{
"extends": "@dopustim/coffeelint-config",
"max_line_length": { "value": 100, "limitComments": true, "level": "warn" }
}
About
Visit the CoffeeLint website to find out all rules and descriptions.