@spence1115/eslint-plugin-modules-newlines
v1.0.1
Published
Enforce placing import or export variables on a newline. Forked from https://github.com/ruudandriessen/eslint-plugin-modules-newline
Downloads
19,823
Maintainers
Readme
eslint-plugin-modules-newlines
Eslint plugin to enforce placing import and export variables on separate lines
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
or
$ yarn add eslint --dev
Next, install @spence1115/eslint-plugin-modules-newlines
:
$ npm install @spence1115/eslint-plugin-modules-newlines --save-dev
or
$ yarn add @spence1115/eslint-plugin-modules-newlines --dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install @spence1115/eslint-plugin-modules-newlines
globally.
Usage
Add "@spence1115/modules-newlines"
to the plugins section of your .eslintrc
configuration file
{
"plugins": [
"@spence1115/modules-newlines"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"@spence1115/modules-newlines/import-declaration-newline": ["error/warn", {
"nodeSpecifersLength": 3 // optional, allows more import/exports on a single line before forcing a line break
}],
"@spence1115/modules-newline/export-declaration-newline": "error/warn"
}
}
Supported Rules
- Enforce placing import variables on separate lines (import-declaration-newline)
- Enforce placing export variables on separate lines (export-declaration-newline)
For maintainers
AST explorer - https://astexplorer.net/#/gist/b6093767261d6a5bce76043dcea24bec/5fe761308f41936beaa30cbe7aef3a6f0283e11d