This is the layout of my project:
-lib (git submodule housing a JavaScript library)
-A (Vue.js + TypeScript + ESLint app that utilizes lib)
-B (another module with an Express app)
When running the A
app, I encounter eslint errors with the lib
submodule:
Error: Failed to load configuration "airbnb" to extend from.
Is there a way to exclude lib
from the eslint processing in the A
app?
I have attempted adding a .eslintignore
file to the root directory and A
directory. I have also tried adding ignorePatterns
to the ESLint configurations in A
, but nothing has worked so far.
Any assistance would be greatly appreciated.