关于一个类似于ESLint -只允许绝对导入路径而不是相对的问题的注记
怎么可能在绝对进口上出错呢?对TypeScript的上下文特别感兴趣。
发布于 2022-02-26 05:50:56
您可以尝试使用规则@typescript-eslint/no-restricted-imports
不允许绝对导入(任何不以./
或../
开头的导入)。
{
rules: {
"no-restricted-imports": "off",
"@typescript-eslint/no-restricted-imports": [
"error",
{
"patterns": ["!./*", "!../*"]
}
]
}
}
@typescript-eslint/no-restricted-imports
扩展了eslint/no-restricted-imports
。
我们禁用eslint/no-restricted-imports
的原因是它可以报告不正确的错误。
更多信息,这里。
发布于 2022-07-24 07:53:19
在IDE中设置“相对路径”,并从tsconfig.json
中删除tsconfig.json
https://stackoverflow.com/questions/71118709
复制相似问题