analysis_options.yaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. # The following line activates a set of recommended lints for Flutter apps,
  8. # packages, and plugins designed to encourage good coding practices.
  9. include: package:flutter_lints/flutter.yaml
  10. analyzer:
  11. exclude:
  12. - "**/*.g.dart"
  13. - "**/*.freezed.dart"
  14. linter:
  15. # The lint rules applied to this project can be customized in the
  16. # section below to disable rules from the `package:flutter_lints/flutter.yaml`
  17. # included above or to enable additional rules. A list of all available lints
  18. # and their documentation is published at
  19. # https://dart-lang.github.io/linter/lints/index.html.
  20. #
  21. # Instead of disabling a lint rule for the entire project in the
  22. # section below, it can also be suppressed for a single line of code
  23. # or a specific dart file by using the `// ignore: name_of_lint` and
  24. # `// ignore_for_file: name_of_lint` syntax on the line or in the file
  25. # producing the lint.
  26. rules:
  27. - require_trailing_commas
  28. - prefer_final_fields
  29. - prefer_final_in_for_each
  30. - prefer_final_locals
  31. # Additional information about this file can be found at
  32. # https://dart.dev/guides/language/analysis-options
  33. errors:
  34. invalid_annotation_target: ignore