javascript – 如何在导入不存在的模块时收到警告

前端之家收集整理的这篇文章主要介绍了javascript – 如何在导入不存在的模块时收到警告前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我使用EsLint和VsCode.

尝试导入不存在的模块时,如何显示错误

例如

import foo from './this-path-doesnt-exist'

应该用红色加下划线.
这需要一个eslint插件吗?

最佳答案
如果您使用eslint作为你的linter,你可以使用eslint-plugin-import.

This plugin intends to support linting of ES2015+ (ES6+) import/export
Syntax,and prevent issues with misspelling of file paths and import
names

原文链接:https://www.f2er.com/js/429218.html

猜你在找的JavaScript相关文章