如何排除eslint中根目录之外的文件夹?

How to exclude folder that is out of root directory in eslint?

这是我的项目结构:

-lib (git submodule with js library)
-A (vue.js+typesript+eslint app that uses lib)
-B (other module with express app)

虽然 运行 A 应用程序我在 lib:

处遇到 eslint 错误
Error: Failed to load config "airbnb" to extend from.

如何从 A 应用程序的 eslint 处理中排除 lib

我尝试将 .eslintignore 添加到根目录和 A 目录。还尝试将 ignorePatterns 添加到 A eslint 配置。没有任何帮助。

如果有人能提供帮助,我们将不胜感激。

通过正确配置 .eslintignore 解决了这个问题。刚刚添加了以下行:

../lib/*