@floydspace/eslint-plugin-rules

0.3.0 • Public • Published

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

Name Description
@floydspace/rules/object-shorthand-grouping Group your shorthand properties at the beginning of your object declaration

Package Sidebar

Install

npm i @floydspace/eslint-plugin-rules

Weekly Downloads

29

Version

0.3.0

License

MIT

Unpacked Size

17.9 kB

Total Files

13

Last publish

Collaborators

  • f1oyd