You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I have a monorepo with a bunch of packages written in TS. At the root is the Flutter front-end project and a node_modules for pnpm dependencies. It is oddly specific, but if I have the npm firebase package installed through pnpm, and I run dart run custom_lint, the following exception is thrown:
I find this oddly specific, because I couldn't reproduce the issue by installing the same dependency through npm install instead, or installing a different package through pnpm.
I have tried to exclude node_modules from analysis_options.yaml, but to no avail. It feels nonsensical for custom_lint to try and go lint node_modules.
I am also under the impression this causes some slowdowns to static analysis, but I have not tested it.
To Reproduce
I set up a minimal reproductible example at the following link. Steps for setup are in the readme.
Expected behavior
Able to run dart run custom_lint in pnpm workspace
The text was updated successfully, but these errors were encountered:
Describe the bug
I have a monorepo with a bunch of packages written in TS. At the root is the Flutter front-end project and a node_modules for pnpm dependencies. It is oddly specific, but if I have the npm firebase package installed through pnpm, and I run
dart run custom_lint
, the following exception is thrown:Exception
I find this oddly specific, because I couldn't reproduce the issue by installing the same dependency through
npm install
instead, or installing a different package through pnpm.I have tried to exclude node_modules from analysis_options.yaml, but to no avail. It feels nonsensical for custom_lint to try and go lint node_modules.
I am also under the impression this causes some slowdowns to static analysis, but I have not tested it.
To Reproduce
I set up a minimal reproductible example at the following link. Steps for setup are in the readme.
Expected behavior
Able to run
dart run custom_lint
in pnpm workspaceThe text was updated successfully, but these errors were encountered: