We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For dart-lang/sdk#47256, the analyzer recently supports merging multiple include files, in an analysis options file. So before we only supported:
include: some_file.yaml
and we now additionally support:
include: - one_file.yaml - ../../another.yaml - package:foo/thrid.yaml
I believe this package has it's own YAML merging logic to read the single (chain of) include files.
The text was updated successfully, but these errors were encountered:
Notes for whoever implements this in dart_style:
lib/src/analysis_options/merge_options.dart
lib/src/analysis_options/analysis_options_file.dart
include
Sorry, something went wrong.
analysis_options.yaml
@munificent would you mind if I took a whack at this?
I was honestly surprised when I first implemented this that only a single include was supported.
Sure, not at all! Thanks!
ecfc0cb
srawlins
Successfully merging a pull request may close this issue.
For dart-lang/sdk#47256, the analyzer recently supports merging multiple include files, in an analysis options file. So before we only supported:
and we now additionally support:
I believe this package has it's own YAML merging logic to read the single (chain of) include files.
The text was updated successfully, but these errors were encountered: