1.0.4 • Published 6 years ago

eslint-plugin-avoid-explicit-extension v1.0.4

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

eslint-plugin-avoid-explicit-extension

Prevention of explicit mention of extensions while requiring files.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-avoid-explicit-extension:

$ npm install eslint-plugin-avoid-explicit-extension --save-dev

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

Usage

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

{
    "plugins": [
        "avoid-explicit-extension"
    ]
}

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

{
    "rules": {
        "avoid-explicit-extension/no-js-ext": "error"
    }
}

Supported Rules