analysis_options.yaml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. # This file configures the static analysis results for your project (errors,
  2. # warnings, and lints).
  3. #
  4. # This enables the 'recommended' set of lints from `package:lints`.
  5. # This set helps identify many issues that may lead to problems when running
  6. # or consuming Dart code, and enforces writing Dart using a single, idiomatic
  7. # style and format.
  8. #
  9. # If you want a smaller set of lints you can change this to specify
  10. # 'package:lints/core.yaml'. These are just the most critical lints
  11. # (the recommended set includes the core lints).
  12. # The core lints are also what is used by pub.dev for scoring packages.
  13. include: package:lints/recommended.yaml
  14. # Uncomment the following section to specify additional rules.
  15. # linter:
  16. # rules:
  17. # - camel_case_types
  18. # analyzer:
  19. # exclude:
  20. # - path/to/excluded/files/**
  21. # For more information about the core and recommended set of lints, see
  22. # https://dart.dev/go/core-lints
  23. # For additional information about configuring this file, see
  24. # https://dart.dev/guides/language/analysis-options