Skip to content

ozaki25/eslint-plugin-restrict-named-import

Repository files navigation

eslint-plugin-restrict-named-import

Installation

npm i -D eslint-plugin-restrict-named-import
# or
yarn add -D eslint-plugin-restrict-named-import
  • Add settings to .eslintrc.
// ...
  plugins: [
    /** other plugins **/,
    "restrict-named-import"
  ],
  rules: {
    "restrict-named-import/no-specific-named-import": [2, [["foo", "bar"]]]
  },
// ...
  • An error occurs in the following.
import { bar } from 'foo';

// ...

Rules

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published