0.0.6 • Published 7 months ago

eslint-plugin-no-re-export v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

eslint-plugin-no-re-export

npm GitHub Build Status GitHub Tests

Disallow re-exporting in TypeScript/JavaScript.

Installation

# npm
npm install eslint-plugin-no-re-export --save-dev

# yarn
yarn add eslint-plugin-no-re-export --dev

# bun
bun install eslint-plugin-no-re-export --save-dev

Usage

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

{
  "plugins": ["no-re-export"]
}

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

{
  "rules": {
    "no-re-export/no-re-export": "error"
  }
}

Rules

Rule IDDescription
no-re-exportdisallow re-exporting in TypeScript/JavaScript

References

0.0.6

7 months ago

0.0.5

7 months ago

0.0.4

7 months ago

0.0.3

7 months ago

0.0.2

7 months ago

0.0.1

7 months ago