1.0.13 ⢠Published 1 year ago
@burneeble/eslint-plugin-burneeble v1.0.13
eslint-plugin-burneeble
Burneeble javascript rules
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-burneeble:
npm install eslint-plugin-burneeble --save-devUsage
Add burneeble to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"burneeble"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"burneeble/rule-name": 2
}
}Rules
š§ Automatically fixable by the --fix CLI option.
| Name | Description | š§ |
|---|---|---|
| camel-case-vars | Variables must be written in camelCase. | š§ |