0.1.11 • Published 2 years ago

eslint-plugin-typescript-sort v0.1.11

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

eslint-plugin-typescript-sort

Streamlines coding style consistency and code readability by sorting various code elements like interfaces, types, string enums, and object parameters within arrow functions.

npm i --save-dev eslint-plugin-typescript-sort

Tip: Configure your IDE to auto-format code on save according to ESLint rules, reducing the need for manual sorting and enhancing your coding workflow. Here's a guide on how to do it in VSCode.

Supported Rules

NameDescriptionRecommendedFixable
typescript-sort/interfaceRequire interface keys to be sorted.:wrench:
typescript-sort/typeRequire string type members to be sorted.:wrench:
typescript-sort/enumRequire string enum members to be sorted.:wrench:
typescript-sort/arrowfunc-object-paramsRequire objects inside arrow function parameters to be sorted.:wrench:

Installation

You'll first need to install eslint, typescript and @typescript-eslint/parser

npm i --save-dev eslint typescript @typescript-eslint/parser

Then, install eslint-plugin-typescript-sort:

npm i --save-dev eslint-plugin-typescript-sort

Usage

Everything is configured in your .eslintrc configuration file

Specify the parser for typescript files:

{
  "parser": "@typescript-eslint/parser"
}

Option 1

Add typescript-sort to the plugins section. You can omit the eslint-plugin- part:

{
  "plugins": ["typescript-sort"]
}

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

{
  "rules": {
    "typescript-sort/interface": "error",
    "typescript-sort/type": "error",
    "typescript-sort/enum": "error"
    "typescript-sort/arrowfunc-object-params": "error"
  }
}

Option 2

Enable all rules with recommended config:

{
  "extends": ["plugin:typescript-sort/recommended"]
}

Rules options

To see custom options for each rules, see the rule's documentation page.

E.g. typescript-sort/interface has options for case sensitivity, natural order and required first.

{
  "typescript-sort/interface": [
    "error",
    "asc",
    { "caseSensitive": true, "natural": false, "requiredFirst": false }
  ]
}

Credits

Inspired by and sourced from eslint/sort-keys and infectr/eslint-plugin-typescript-sort-keys.

0.1.10

2 years ago

0.1.11

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.9

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.0

2 years ago