我在vscode中使用Prettier格式化程序进行了eslint设置。
下面是原始行,
import MyCustomComponentsIsThis
from 'queries/internal/consumer/MyCustomComponentsIsThis';
更漂亮的格式化程序始终将其排成一行,如下所示
import MyCustomComponentsIsThis from 'queries/internal/consumer/MyCustomComponentsIsThis';
但是这将破坏esLint max-len规则,因此仍然在vscode上将其显示为错误。 我怎样才能更漂亮地保持像上面两行代码一样