Skip to content

prodo-dev/eslint-plugin-prodo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint-plugin-prodo

Prodo's custom ESLint stuff

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-prodo:

$ npm install eslint-plugin-prodo --save-dev

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

Usage

Add prodo to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "prodo"
    ]
}

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

{
    "rules": {
      "prodo/sort-imports-by-path": ["error", {
        "sortOrder": ["type", "named", "unnamed"],
        "enforceBlankLine": true,
        "enforceTrailingLine": true,
        "ignoreCase": true
      }],
    }
}

Supported Rules

  • sort-imports-by-path

About

ESLint custom rules

Resources

Stars

Watchers

Forks

Packages

No packages published