1.0.3 ⢠Published 3 years ago
@vnva/eslint-plugin v1.0.3
@vnva/eslint-plugin
My eslint rules
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install @vnva/eslint-plugin:
npm install @vnva/eslint-plugin --save-devUsage
Add @vnva/eslint-plugin to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": ["@vnva/eslint-plugin"]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"@vnva/rule-name": 2
}
}Rules
š§ Automatically fixable by the --fix CLI option.
| Name | Description | š§ |
|---|---|---|
| no-snake-case-identifiers | Do not use snake_case, use camelCase | š§ |