Contents

Flutter Analysis Options With Google

analysis_options.yaml

This file is flutter project root.
It can make more good code by adding guideline to base lint.

pedantic

This is a lint that was served from Google for analysis_options.yaml.

Install pedantic

pubspec.yaml

1
2
3
4
5
6
7
# If you use `package:pedantic/pedantic.dart`, add a normal dependency.
dependencies:
  pedantic: ^1.11.0

# Or, if you just want `analysis_options.yaml`, it can be a dev dependency.
dev_dependencies:
  pedantic: ^1.11.0

analysis_options.yaml

1
include: package:pedantic/analysis_options.yaml