-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathdefault-import-match-filename.js
199 lines (172 loc) · 4.63 KB
/
default-import-match-filename.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
import docsUrl from '../docsUrl'
import isStaticRequire from '../core/staticRequire'
import Path from 'path'
/**
* @param {string} filename
* @returns {string}
*/
function removeExtension(filename) {
return Path.basename(filename, Path.extname(filename))
}
/**
* @param {string} filename
* @returns {string}
*/
function normalizeFilename(filename) {
return filename.replace(/[-_.]/g, '').toLowerCase()
}
/**
* Test if local name matches filename.
* @param {string} localName
* @param {string} filename
* @returns {boolean}
*/
function isCompatible(localName, filename) {
const normalizedLocalName = localName.replace(/_/g, '').toLowerCase()
return (
normalizedLocalName === normalizeFilename(filename) ||
normalizedLocalName === normalizeFilename(removeExtension(filename))
)
}
/**
* Match 'foo' but not 'foo/bar.js' and './foo'
* @param {string} path
* @returns {boolean}
*/
function isBarePackageImport(path) {
return path !== '.' && path !== '..' && !path.includes('/')
}
/**
* Match paths consisting of only '.' and '..', like '.', './', '..', '../..'.
* @param {string} path
* @returns {boolean}
*/
function isAncestorRelativePath(path) {
return (
path.length > 0 &&
!path.startsWith('/') &&
path
.split(/[/\\]/)
.every(segment => segment === '..' || segment === '.' || segment === '')
)
}
/**
* @param {string} packageJsonPath
* @returns {string | undefined}
*/
function getPackageJsonName(packageJsonPath) {
try {
return require(packageJsonPath).name || undefined
} catch (_) {
return undefined
}
}
function getNameFromPackageJsonOrDirname(path, context) {
const directoryName = Path.join(context.getFilename(), path, '..')
const packageJsonPath = Path.join(directoryName, 'package.json')
const packageJsonName = getPackageJsonName(packageJsonPath)
return packageJsonName || Path.basename(directoryName)
}
/**
* Get filename from a path.
* @param {string} path
* @param {object} context
* @returns {string | undefined}
*/
function getFilename(path, context) {
// like require('lodash')
if (isBarePackageImport(path)) {
return undefined
}
const basename = Path.basename(path)
const isDir = /^index$|^index\./.test(basename)
const processedPath = isDir ? Path.dirname(path) : path
// like require('.'), require('..'), require('../..')
if (isAncestorRelativePath(processedPath)) {
return getNameFromPackageJsonOrDirname(processedPath, context)
}
return Path.basename(processedPath) + (isDir ? '/' : '')
}
/**
* @param {string[]} ignorePaths
* @param {string} path
* @returns {boolean}
*/
function isIgnored(ignorePaths, path) {
return ignorePaths.some(pattern => path.includes(pattern))
}
module.exports = {
meta: {
type: 'suggestion',
docs: {
url: docsUrl('default-import-match-filename'),
},
schema: [
{
type: 'object',
additionalProperties: false,
properties: {
ignorePaths: {
type: 'array',
items: {
type: 'string',
},
},
},
},
],
},
create(context) {
const ignorePaths = context.options[0]
? context.options[0].ignorePaths || []
: []
return {
ImportDeclaration(node) {
const defaultImportSpecifier = node.specifiers.find(
({type}) => type === 'ImportDefaultSpecifier'
)
const defaultImportName =
defaultImportSpecifier && defaultImportSpecifier.local.name
if (!defaultImportName) {
return
}
const filename = getFilename(node.source.value, context)
if (!filename) {
return
}
if (
!isCompatible(defaultImportName, filename) &&
!isIgnored(ignorePaths, node.source.value)
) {
context.report({
node: defaultImportSpecifier,
message: `Default import name does not match filename "${filename}".`,
})
}
},
CallExpression(node) {
if (
!isStaticRequire(node) ||
node.parent.type !== 'VariableDeclarator' ||
node.parent.id.type !== 'Identifier'
) {
return
}
const localName = node.parent.id.name
const filename = getFilename(node.arguments[0].value, context)
if (!filename) {
return
}
if (
!isCompatible(localName, filename) &&
!isIgnored(ignorePaths, node.arguments[0].value)
) {
context.report({
node: node.parent.id,
message: `Default import name does not match filename "${filename}".`,
})
}
},
}
},
}