eslint-plugin-rewrite-imports
v0.0.3
Published
Eslint plugin for rewriting imports based on regex pattern or paths in tsconfig.json
Downloads
22
Readme
eslint-plugin-rewrite-imports
🔧 Automatically fixable by the --fix CLI option.
| Name | Description | 🔧 | | :----------------------------------------------- | :--------------------------------------------------------------- | :- | | rewrite-imports | Rewrite imports based on regex pattern or paths in tsconfig.json | 🔧 |
Installation
Install from NPM:
npm install --save-dev eslint-plugin-rewrite-importsIn .eslintrc.js:
- Add
"rewrite-imports"toplugins. - Add
rewrite-imports/rewrite-importstorules.
module.exports = {
...
plugins: ["rewrite-imports"],
rules: {
...
"rewrite-imports/rewrite-imports": ["error", {
rewrites: {
// Define your rewrite rules here.
}
}],
}
}Rewrite rules
Define rules in the rewrites object. The keys are regex patterns. The values are replacement strings. If the regex matches an import path, then the import will be replaced by String.replace(pattern, replacement).
{
rewrites: {
"^\\.\\./Foo(.*)": "@src/Foo$1",
}
}The above rule will rewrite
import { Bar } from '../Foo/Bar';,into
import { Bar } from '@src/Foo/Bar';Rewrite tsconfig aliases
Instead of defining custom rewrite rules, the plugin reads compilerOptions.paths from tsconfig.json in the current working directory.
{
compilerOptions: {
paths: {
"@src/Foo/*": ["../Foo/*"]
}
}
}This is equivalent to the rewrite rules defined in eslintrc.js. You can choose either way.
