Analyzer analyzes files in ignored directories/other projects if you open them, and doesn't stop when they're closed
See original GitHub issueRepro:
- Open the Flutter repo in VSCode
- Navigate to the definition of something in
dart:ui
or the Dart SDK (i.e. a file under thebin/cache/**
folder) - Problems window starts showing analysis issues in that folder based on current analysis options, even though
analysis_options.yaml
excludes it. - Close the file (or even VSCode as a whole), but the problems still persist.
It seems to go away if I rm -rf ~/.dartServer
with VSCode closed and then re-launch.
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Trouble un-ignoring previously ignored files in Git repo
The problem is that Git won't stop ignoring that directory. I have removed the lines from .gitignore that specify this directory and it...
Read more >Ignoring files, folders, or code - Semgrep
This documents various methods to skip or ignore files, folders, or code that are not relevant to a Semgrep scan.
Read more >Frequently Asked Questions - SAS Support
Frequently asked questions about SAS OnDemand for Academics - a service that enables instructors and students to access the power of SAS over...
Read more >The Java Plugin - Gradle User Manual
The Java plugin adds Java compilation along with testing and bundling capabilities to a project. It serves as the basis for many of...
Read more >Yocto Project Reference Manual
Sometimes it can be hard to see why BitBake wants to build other packages before building a given package you have specified. The...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Aha, right. I see now. I believe this is the issue described in a comment at https://github.com/dart-lang/sdk/issues/25551#issuecomment-418437599. However I don’t think it has its own issue, so I’ll open one for better visibility so it doesn’t get missed.
I can kind of work around this by adding a filter to the problems window like
!bin/cache/**
, but it sztill suggests there’s a ton of problems even though they’re filtered out from view.