When I define excludes in my .analysis_options file like this:
analyzer:
strong-mode: true
exclude:
- test/**
- lib/generated_library/**
files in lib/generated_library are still analyzed, when they are imported by other libraries in my project.
I would expect not to get strong-mode warnings or lint errors in any files excluded in the exclude: list
When I define excludes in my
.analysis_optionsfile like this:files in
lib/generated_libraryare still analyzed, when they are imported by other libraries in my project.I would expect not to get strong-mode warnings or lint errors in any files excluded in the
exclude:list