1.0.3 ā€¢ Published 1 year ago

@vnva/eslint-plugin v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

@vnva/eslint-plugin

My eslint rules

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install @vnva/eslint-plugin:

npm install @vnva/eslint-plugin --save-dev

Usage

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.

NameDescriptionšŸ”§
no-snake-case-identifiersDo not use snake_case, use camelCasešŸ”§