analysis_options.yaml 501 B

123456789101112131415161718192021
  1. # https://www.dartlang.org/guides/language/analysis-options
  2. # Source of linter options:
  3. # http://dart-lang.github.io/linter/lints/options/options.html
  4. analyzer:
  5. strong-mode: true
  6. # implicit-casts: false
  7. # implicit-dynamic: false
  8. errors:
  9. todo: ignore
  10. exclude:
  11. - flutter/**
  12. - lib/*.dart
  13. linter:
  14. rules:
  15. - camel_case_types
  16. - hash_and_equals
  17. - iterable_contains_unrelated_type
  18. - list_remove_unrelated_type
  19. - unrelated_type_equality_checks
  20. - valid_regexps