2.0.0 • Published 6 years ago
eslint-plugin-restrict-named-import v2.0.0
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
- no-specific-named-import: Do not allow specific import.
2.0.0
6 years ago