1- # This file configures the analyzer, which statically analyzes Dart code to
2- # check for errors, warnings, and lints.
3- #
4- # The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5- # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6- # invoked from the command line by running `flutter analyze`.
7-
8- # The following line activates a set of recommended lints for Flutter apps,
9- # packages, and plugins designed to encourage good coding practices.
101include : package:flutter_lints/flutter.yaml
112
123linter :
13- # The lint rules applied to this project can be customized in the
14- # section below to disable rules from the `package:flutter_lints/flutter.yaml`
15- # included above or to enable additional rules. A list of all available lints
16- # and their documentation is published at https://dart.dev/lints.
17- #
18- # Instead of disabling a lint rule for the entire project in the
19- # section below, it can also be suppressed for a single line of code
20- # or a specific dart file by using the `// ignore: name_of_lint` and
21- # `// ignore_for_file: name_of_lint` syntax on the line or in the file
22- # producing the lint.
234 rules :
24- # avoid_print: false # Uncomment to disable the `avoid_print` rule
25- # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
5+ file_names : false
6+ avoid_print : false
7+ lines_longer_than_80_chars : false
8+ cancel_subscriptions : true
9+ constant_identifier_names : true
10+ directives_ordering : false
11+ empty_constructor_bodies : true
12+ flutter_style_todos : true
13+ implementation_imports : true
14+ package_names : true
15+ package_prefixed_library_names : true
16+ prefer_final_locals : true
17+ sort_child_properties_last : true
18+ sort_constructors_first : true
19+ sort_unnamed_constructors_first : true
20+ type_annotate_public_apis : false
21+ unnecessary_await_in_return : true
22+ prefer_is_not_empty : true
23+ avoid_empty_else : true
24+ avoid_returning_null_for_void : true
25+ no_duplicate_case_values : true
26+ prefer_typing_uninitialized_variables : true
27+ public_member_api_docs : false
28+ always_put_control_body_on_new_line : true
29+ curly_braces_in_flow_control_structures : true
2630
27- # Additional information about this file can be found at
28- # https://dart.dev/guides/language/analysis-options
31+ # See lint rules here https://dart.dev/tools/linter-rules#lints
0 commit comments