0.3.0 • Published 2 years ago

@floydspace/eslint-plugin-rules v0.3.0

Weekly downloads
181
License
MIT
Repository
github
Last release
2 years ago

Build Status Coverage Status npm version npm

Installation

Make sure you have TypeScript and @typescript-eslint/parser installed, then install the plugin:

npm i @floydspace/eslint-plugin-rules --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install @floydspace/eslint-plugin-rules globally.

Usage

Add @typescript-eslint/parser to the parser field and @floydspace/rules to the plugins section of your .eslintrc configuration file:

{
  "parser": "@typescript-eslint/parser",
  "plugins": ["@floydspace/rules"]
}

Then configure the rules you want to use under the rules section.

{
  "parser": "@typescript-eslint/parser",
  "plugins": ["@floydspace/rules"],
  "rules": {
    "@floydspace/rules/object-shorthand-grouping": "error"
  }
}

You can also enable all the rules for our plugin. Add plugin:@floydspace/rules/all in extends:

{
  "extends": ["plugin:@floydspace/rules/all"]
}

Note: Make sure to use eslint --ext .js,.ts since by default eslint will only search for .js files.

Rules

NameDescription
@floydspace/rules/object-shorthand-groupingGroup your shorthand properties at the beginning of your object declaration