我希望no-restricted-imports
在我的代码库中强制执行特定导入的规则。但是,我需要为某些路径抛出错误并为其他路径抛出警告。看起来我不能通过这样做来做到这一点:
'no-restricted-imports': [
'warn',
{
paths: [
{
name: 'd3',
message: 'd3 would be deprecated soon, please consider moving away from it'
}
]
},
'error',
{
paths: [
{
name: 'moment',
message: 'Use of moment is not allowed',
},
]
]
实现这种行为的最佳方法是什么?
我已经尝试过no-restricted-imports
两次定义规则,一次是错误,一次是警告,但由于它是一个对象,它会被覆盖。