1.0.4 • Published 6 years ago
eslint-plugin-avoid-explicit-extension v1.0.4
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-devNext, install eslint-plugin-avoid-explicit-extension:
$ npm install eslint-plugin-avoid-explicit-extension --save-devNote: 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
- avoid-explicit-extension/no-js-ext: Enforces requiring of local JS modules without specifying the extension