1.1.0 • Published 4 years ago
@dopustim/coffeelint-config v1.1.0
@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-configExtend 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.