Files
sdk/pkg/linter/analysis_options.yaml
T
Paul Berry 406f493bcf Sort linter rules in developer experience analysis_options.yaml files.
https://dart-review.googlesource.com/c/sdk/+/505046 was created by an
automated script that didn't respect the ordering of lint entries in
`analysis_options.yaml` files. We usually try to keep them sorted, so
this CL re-sorts them.

Change-Id: I1a7d007af34b6db2f8e4f02b8cc71d2c6a6a6964
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/507140
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
2026-05-29 12:39:54 -07:00

70 lines
2.0 KiB
YAML

include: package:lints/recommended.yaml
analyzer:
errors:
todo: ignore
exclude:
# ignore vscode .history files
- .history/**
language:
strict-casts: true
strict-raw-types: true
linter:
rules:
- always_put_required_named_parameters_first
- avoid_annotating_with_dynamic
- avoid_bool_literals_in_conditional_expressions
- avoid_catches_without_on_clauses
- avoid_catching_errors
- avoid_dynamic_calls
- avoid_positional_boolean_parameters
- avoid_print
- avoid_redundant_argument_values
- avoid_returning_this
- avoid_setters_without_getters
- avoid_slow_async_io
- avoid_unused_constructor_parameters
- cancel_subscriptions
- cast_nullable_to_non_nullable
- comment_references
- deprecated_member_use_from_same_package
- directives_ordering
- discarded_futures
- flutter_style_todos
- join_return_with_assignment
- literal_only_boolean_expressions
- no_adjacent_strings_in_list
- no_literal_bool_comparisons
- noop_primitive_operations
- only_throw_errors
- parameter_assignments
- prefer_asserts_in_initializer_lists
- prefer_const_constructors_in_immutables
- prefer_constructors_over_static_methods
- prefer_expression_function_bodies
- prefer_foreach
- prefer_null_aware_method_calls
- prefer_relative_imports
- prefer_single_quotes
- sort_pub_dependencies
- test_types_in_equals
- throw_in_finally
- unawaited_futures
- unnecessary_async
- unnecessary_breaks
- unnecessary_const_in_enum_constructor
- unnecessary_final
- unnecessary_ignore
- unnecessary_lambdas
- unnecessary_library_directive
- unnecessary_null_checks
- unnecessary_parenthesis
- unnecessary_statements
- unnecessary_type_name_in_constructor
- unreachable_from_main
- use_late_for_private_fields_and_variables
- use_setters_to_change_properties
- use_string_buffers
- use_to_and_as_if_applicable