@@ -15,14 +15,16 @@ function isSameFolder(path) {
15
15
return path . startsWith ( "./" ) ;
16
16
}
17
17
18
- function getAbsolutePath ( relativePath , context , rootDir ) {
19
- return path
18
+ function getAbsolutePath ( relativePath , context , rootDir , prefix ) {
19
+ return [
20
+ prefix ,
21
+ ...path
20
22
. relative (
21
23
context . getCwd ( ) + ( rootDir !== '' ? path . sep + rootDir : '' ) ,
22
24
path . join ( path . dirname ( context . getFilename ( ) ) , relativePath )
23
25
)
24
26
. split ( path . sep )
25
- . join ( "/" ) ;
27
+ ] . join ( "/" ) ;
26
28
}
27
29
28
30
const message = "import statements should have an absolute path" ;
@@ -35,9 +37,10 @@ module.exports = {
35
37
fixable : "code" ,
36
38
} ,
37
39
create : function ( context ) {
38
- const { allowSameFolder, rootDir } = {
40
+ const { allowSameFolder, rootDir, prefix } = {
39
41
allowSameFolder : context . options [ 0 ] ?. allowSameFolder || false ,
40
42
rootDir : context . options [ 0 ] ?. rootDir || '' ,
43
+ prefix : context . options [ 0 ] ?. prefix || '' ,
41
44
} ;
42
45
43
46
return {
@@ -50,7 +53,7 @@ module.exports = {
50
53
fix : function ( fixer ) {
51
54
return fixer . replaceTextRange (
52
55
[ node . source . range [ 0 ] + 1 , node . source . range [ 1 ] - 1 ] ,
53
- getAbsolutePath ( path , context , rootDir || '' )
56
+ getAbsolutePath ( path , context , rootDir || '' , prefix )
54
57
) ;
55
58
} ,
56
59
} ) ;
@@ -63,7 +66,7 @@ module.exports = {
63
66
fix : function ( fixer ) {
64
67
return fixer . replaceTextRange (
65
68
[ node . source . range [ 0 ] + 1 , node . source . range [ 1 ] - 1 ] ,
66
- getAbsolutePath ( path , context , rootDir || '' )
69
+ getAbsolutePath ( path , context , rootDir || '' , prefix )
67
70
) ;
68
71
} ,
69
72
} ) ;
0 commit comments