|
| 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. |
| 10 | +include: package:flutter_lints/flutter.yaml |
| 11 | + |
| 12 | +linter: |
| 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. |
| 23 | + rules: |
| 24 | + # Disable style lints for example app |
| 25 | + avoid_print: false |
| 26 | + unnecessary_new: false |
| 27 | + unnecessary_this: false |
| 28 | + prefer_const_constructors: false |
| 29 | + prefer_const_constructors_in_immutables: false |
| 30 | + use_key_in_widget_constructors: false |
| 31 | + library_private_types_in_public_api: false |
| 32 | + prefer_final_fields: false |
| 33 | + prefer_interpolation_to_compose_strings: false |
| 34 | + prefer_collection_literals: false |
| 35 | + sort_child_properties_last: false |
| 36 | + prefer_generic_function_type_aliases: false |
| 37 | + annotate_overrides: false |
| 38 | + depend_on_referenced_packages: false |
| 39 | + |
| 40 | +# Additional information about this file can be found at |
| 41 | +# https://dart.dev/guides/language/analysis-options |
0 commit comments