2.0.0 • Published 6 years ago

eslint-plugin-restrict-named-import v2.0.0

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

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