Skip to content

Commit d977d2d

Browse files
author
Michael Klimushyn
authored
[all] Switch to pedantic analysis rules (flutter#2300)
Switches our out of date fork of Flutter's analysis rules to the pedantic package. In order to make this an easy change to initially land and then incrementally enable, any existing non-trivial lints have just been ignored within their respective packages instead of being fixed. Also adds a global lint for missing public DartDocs. Like the pedantic lints, this is ignored in packages that are already failing it.
1 parent 295cb79 commit d977d2d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

analysis_options.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This is a temporary file to allow us to land a new set of linter rules in a
2+
# series of manageable patches instead of one gigantic PR. It disables some of
3+
# the new lints that are already failing on this plugin, for this plugin. It
4+
# should be deleted and the failing lints addressed as soon as possible.
5+
6+
include: ../../analysis_options.yaml
7+
8+
analyzer:
9+
errors:
10+
public_member_api_docs: ignore
11+
unawaited_futures: ignore

0 commit comments

Comments
 (0)