Skip to content

Commit 6833036

Browse files
Feature/add prefix option (#15)
* provided prefix option * readme typo Co-authored-by: Bobby Piper <[email protected]>
1 parent ccb7018 commit 6833036

File tree

2 files changed

+31
-7
lines changed

2 files changed

+31
-7
lines changed

README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Add the plugin to the plugins section, and configure the rule options.
3939
...
4040
"no-relative-import-paths/no-relative-import-paths": [
4141
"warn",
42-
{ "allowSameFolder": true, "rootDir": "src" }
42+
{ "allowSameFolder": true, "rootDir": "src", "prefix": "" }
4343
]
4444
...
4545
```
@@ -85,3 +85,24 @@ import Something from "components/something";
8585
// ^- no 'src/' prefix is added
8686
```
8787

88+
### `prefix`
89+
90+
Useful when auto-fixing and a prefix should be included in the absolute path.
91+
92+
Examples of code for this rule:
93+
94+
```js
95+
// when not configured:
96+
import Something from "../../components/something";
97+
98+
// will result in
99+
import Something from "src/components/something";
100+
```
101+
102+
```js
103+
// when configured as { "prefix": "@" }
104+
import Something from "../../components/something";
105+
106+
// will result in
107+
import Something from "@/components/something";
108+
```

index.js

+9-6
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ function isSameFolder(path) {
1515
return path.startsWith("./");
1616
}
1717

18-
function getAbsolutePath(relativePath, context, rootDir) {
19-
return path
18+
function getAbsolutePath(relativePath, context, rootDir, prefix) {
19+
return [
20+
prefix,
21+
...path
2022
.relative(
2123
context.getCwd() + (rootDir !== '' ? path.sep + rootDir : ''),
2224
path.join(path.dirname(context.getFilename()), relativePath)
2325
)
2426
.split(path.sep)
25-
.join("/");
27+
].join("/");
2628
}
2729

2830
const message = "import statements should have an absolute path";
@@ -35,9 +37,10 @@ module.exports = {
3537
fixable: "code",
3638
},
3739
create: function (context) {
38-
const { allowSameFolder, rootDir } = {
40+
const { allowSameFolder, rootDir, prefix } = {
3941
allowSameFolder: context.options[0]?.allowSameFolder || false,
4042
rootDir: context.options[0]?.rootDir || '',
43+
prefix: context.options[0]?.prefix || '',
4144
};
4245

4346
return {
@@ -50,7 +53,7 @@ module.exports = {
5053
fix: function (fixer) {
5154
return fixer.replaceTextRange(
5255
[node.source.range[0] + 1, node.source.range[1] - 1],
53-
getAbsolutePath(path, context, rootDir || '')
56+
getAbsolutePath(path, context, rootDir || '', prefix)
5457
);
5558
},
5659
});
@@ -63,7 +66,7 @@ module.exports = {
6366
fix: function (fixer) {
6467
return fixer.replaceTextRange(
6568
[node.source.range[0] + 1, node.source.range[1] - 1],
66-
getAbsolutePath(path, context, rootDir || '')
69+
getAbsolutePath(path, context, rootDir || '', prefix)
6770
);
6871
},
6972
});

0 commit comments

Comments
 (0)