├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── question.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── no_response.yaml │ ├── package_analyze.yaml │ ├── pr_author_auto_assign.yaml │ ├── pr_title_lint.yaml │ ├── sync_with_azure.yaml │ ├── sync_with_bitbucket.yaml │ └── sync_with_gitlab.yaml ├── .gitignore ├── .gitlab-ci.yml ├── .pubignore ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE_GUIDE.md ├── TROUBLESHOOTING.md ├── analysis_options.yaml ├── assets ├── .gitattributes ├── analyze-console-report.png ├── flutter-favorite-badge-1200px.png ├── logo.svg ├── quick-fixes.png ├── unnecessary-nullable-console-report.png ├── unused-code-console-report.png ├── unused-files-console-report.png └── unused-l10n-console-report.png ├── bin └── metrics.dart ├── bitbucket-pipelines.yml ├── codecov.yml ├── dart_dependency_validator.yaml ├── example └── README.md ├── lib ├── analyzer_plugin.dart ├── cli_runner.dart ├── config.dart ├── lint_analyzer.dart ├── presets │ ├── all.yaml │ ├── dart_all.yaml │ └── flutter_all.yaml ├── reporters.dart ├── src │ ├── analyzer_plugin │ │ ├── analyzer_plugin.dart │ │ ├── analyzer_plugin_starter.dart │ │ └── analyzer_plugin_utils.dart │ ├── analyzers │ │ ├── lint_analyzer │ │ │ ├── anti_patterns │ │ │ │ ├── anti_patterns_list │ │ │ │ │ ├── long_method.dart │ │ │ │ │ └── long_parameter_list.dart │ │ │ │ ├── models │ │ │ │ │ └── pattern.dart │ │ │ │ ├── pattern_utils.dart │ │ │ │ └── patterns_factory.dart │ │ │ ├── base_visitors │ │ │ │ └── source_code_visitor.dart │ │ │ ├── lint_analysis_config.dart │ │ │ ├── lint_analysis_options_validator.dart │ │ │ ├── lint_analyzer.dart │ │ │ ├── lint_config.dart │ │ │ ├── lint_utils.dart │ │ │ ├── metrics │ │ │ │ ├── metric_utils.dart │ │ │ │ ├── metrics_factory.dart │ │ │ │ ├── metrics_list │ │ │ │ │ ├── cyclomatic_complexity │ │ │ │ │ │ ├── cyclomatic_complexity_flow_visitor.dart │ │ │ │ │ │ └── cyclomatic_complexity_metric.dart │ │ │ │ │ ├── halstead_volume │ │ │ │ │ │ ├── halstead_volume_ast_visitor.dart │ │ │ │ │ │ └── halstead_volume_metric.dart │ │ │ │ │ ├── lines_of_code_metric.dart │ │ │ │ │ ├── maintainability_index_metric.dart │ │ │ │ │ ├── maximum_nesting_level │ │ │ │ │ │ ├── maximum_nesting_level_metric.dart │ │ │ │ │ │ └── nesting_level_visitor.dart │ │ │ │ │ ├── number_of_methods_metric.dart │ │ │ │ │ ├── number_of_parameters_metric.dart │ │ │ │ │ ├── source_lines_of_code │ │ │ │ │ │ └── source_lines_of_code_metric.dart │ │ │ │ │ ├── technical_debt │ │ │ │ │ │ ├── technical_debt_metric.dart │ │ │ │ │ │ └── visitor.dart │ │ │ │ │ └── weight_of_class_metric.dart │ │ │ │ ├── models │ │ │ │ │ ├── class_metric.dart │ │ │ │ │ ├── file_metric.dart │ │ │ │ │ ├── function_metric.dart │ │ │ │ │ ├── metric.dart │ │ │ │ │ ├── metric_computation_result.dart │ │ │ │ │ ├── metric_documentation.dart │ │ │ │ │ ├── metric_value.dart │ │ │ │ │ └── metric_value_level.dart │ │ │ │ ├── scope_utils.dart │ │ │ │ └── scope_visitor.dart │ │ │ ├── models │ │ │ │ ├── class_type.dart │ │ │ │ ├── context_message.dart │ │ │ │ ├── entity_type.dart │ │ │ │ ├── function_type.dart │ │ │ │ ├── internal_resolved_unit_result.dart │ │ │ │ ├── issue.dart │ │ │ │ ├── lint_file_report.dart │ │ │ │ ├── replacement.dart │ │ │ │ ├── report.dart │ │ │ │ ├── scoped_class_declaration.dart │ │ │ │ ├── scoped_function_declaration.dart │ │ │ │ ├── severity.dart │ │ │ │ ├── summary_lint_report_record.dart │ │ │ │ └── summary_lint_report_record_status.dart │ │ │ ├── reporters │ │ │ │ ├── lint_report_params.dart │ │ │ │ ├── reporter_factory.dart │ │ │ │ ├── reporters_list │ │ │ │ │ ├── checkstyle │ │ │ │ │ │ └── lint_checkstyle_reporter.dart │ │ │ │ │ ├── code_climate │ │ │ │ │ │ ├── lint_code_climate_reporter.dart │ │ │ │ │ │ └── models │ │ │ │ │ │ │ ├── code_climate_issue.dart │ │ │ │ │ │ │ ├── code_climate_issue_category.dart │ │ │ │ │ │ │ ├── code_climate_issue_location.dart │ │ │ │ │ │ │ └── code_climate_issue_severity.dart │ │ │ │ │ ├── console │ │ │ │ │ │ ├── lint_console_reporter.dart │ │ │ │ │ │ └── lint_console_reporter_helper.dart │ │ │ │ │ ├── github │ │ │ │ │ │ └── lint_github_reporter.dart │ │ │ │ │ ├── html │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── icon.dart │ │ │ │ │ │ │ ├── issue_details_tooltip.dart │ │ │ │ │ │ │ └── report_details_tooltip.dart │ │ │ │ │ │ ├── lint_html_reporter.dart │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── file_metrics_report.dart │ │ │ │ │ │ │ ├── function_metrics_report.dart │ │ │ │ │ │ │ ├── icon_type.dart │ │ │ │ │ │ │ └── report_table_record.dart │ │ │ │ │ │ └── utility_functions.dart │ │ │ │ │ └── json │ │ │ │ │ │ └── lint_json_reporter.dart │ │ │ │ └── utility_selector.dart │ │ │ ├── rules │ │ │ │ ├── base_visitors │ │ │ │ │ └── intl_base_visitor.dart │ │ │ │ ├── models │ │ │ │ │ ├── angular_rule.dart │ │ │ │ │ ├── common_rule.dart │ │ │ │ │ ├── flame_rule.dart │ │ │ │ │ ├── flutter_rule.dart │ │ │ │ │ ├── intl_rule.dart │ │ │ │ │ ├── rule.dart │ │ │ │ │ └── rule_type.dart │ │ │ │ ├── node_utils.dart │ │ │ │ ├── rule_utils.dart │ │ │ │ ├── rules_factory.dart │ │ │ │ └── rules_list │ │ │ │ │ ├── always_remove_listener │ │ │ │ │ ├── always_remove_listener_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── arguments_ordering │ │ │ │ │ ├── arguments_ordering_rule.dart │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_banned_imports │ │ │ │ │ ├── avoid_banned_imports_rule.dart │ │ │ │ │ ├── utils │ │ │ │ │ │ └── config_parser.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_border_all │ │ │ │ │ ├── avoid_border_all_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_cascade_after_if_null │ │ │ │ │ ├── avoid_cascade_after_if_null_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_collection_methods_with_unrelated_types │ │ │ │ │ ├── avoid_collection_methods_with_unrelated_types_rule.dart │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_creating_vector_in_update │ │ │ │ │ ├── avoid_creating_vector_in_update_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_double_slash_imports │ │ │ │ │ ├── avoid_double_slash_imports_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_duplicate_exports │ │ │ │ │ ├── avoid_duplicate_exports_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_dynamic │ │ │ │ │ ├── avoid_dynamic_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_expanded_as_spacer │ │ │ │ │ ├── avoid_expanded_as_spacer_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_global_state │ │ │ │ │ ├── avoid_global_state_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_ignoring_return_values │ │ │ │ │ ├── avoid_ignoring_return_values_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_initializing_in_on_mount │ │ │ │ │ ├── avoid_initializing_in_on_mount_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_late_keyword │ │ │ │ │ ├── avoid_late_keyword_rule.dart │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_missing_enum_constant_in_map │ │ │ │ │ ├── avoid_missing_enum_constant_in_map_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_nested_conditional_expressions │ │ │ │ │ ├── avoid_nested_conditional_expressions_rule.dart │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_non_ascii_symbols │ │ │ │ │ ├── avoid_non_ascii_symbols_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_non_null_assertion │ │ │ │ │ ├── avoid_non_null_assertion_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_passing_async_when_sync_expected │ │ │ │ │ ├── avoid_passing_async_when_sync_expected_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_preserve_whitespace_false │ │ │ │ │ ├── avoid_preserve_whitespace_false_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_redundant_async │ │ │ │ │ ├── avoid_redundant_async_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_redundant_async_on_load │ │ │ │ │ ├── avoid_redundant_async_on_load_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_returning_widgets │ │ │ │ │ ├── avoid_returning_widgets_rule.dart │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── visit_declaration.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_shrink_wrap_in_lists │ │ │ │ │ ├── avoid_shrink_wrap_in_lists_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_substring │ │ │ │ │ ├── avoid_substring_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_throw_in_catch_block │ │ │ │ │ ├── avoid_throw_in_catch_block_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_top_level_members_in_tests │ │ │ │ │ ├── avoid_top_level_members_in_tests_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_unnecessary_conditionals │ │ │ │ │ ├── avoid_unnecessary_conditionals_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_unnecessary_setstate │ │ │ │ │ ├── avoid_unnecessary_setstate_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_unnecessary_type_assertions │ │ │ │ │ ├── avoid_unnecessary_type_assertions_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_unnecessary_type_casts │ │ │ │ │ ├── avoid_unnecessary_type_casts_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_unrelated_type_assertions │ │ │ │ │ ├── avoid_unrelated_type_assertions_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_unused_parameters │ │ │ │ │ ├── avoid_unused_parameters_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── avoid_wrapping_in_padding │ │ │ │ │ ├── avoid_wrapping_in_padding_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── ban_name │ │ │ │ │ ├── ban_name_rule.dart │ │ │ │ │ ├── utils │ │ │ │ │ │ └── config_parser.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── binary_expression_operand_order │ │ │ │ │ ├── binary_expression_operand_order_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── check_for_equals_in_render_object_setters │ │ │ │ │ ├── check_for_equals_in_render_object_setters_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── common_config.dart │ │ │ │ │ ├── component_annotation_arguments_ordering │ │ │ │ │ ├── component_annotation_arguments_ordering_rule.dart │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── consistent_update_render_object │ │ │ │ │ ├── consistent_update_render_object_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── correct_game_instantiating │ │ │ │ │ ├── correct_game_instantiating_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── double_literal_format │ │ │ │ │ ├── double_literal_format_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── format_comment │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── format_comment_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── list_all_equatable_fields │ │ │ │ │ ├── list_all_equatable_fields_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── member_ordering │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── member_ordering_rule.dart │ │ │ │ │ ├── models │ │ │ │ │ │ ├── annotation.dart │ │ │ │ │ │ ├── field_keyword.dart │ │ │ │ │ │ ├── member_group.dart │ │ │ │ │ │ ├── member_type.dart │ │ │ │ │ │ └── modifier.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── missing_test_assertion │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── missing_test_assertion_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── newline_before_return │ │ │ │ │ ├── newline_before_return_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── no_boolean_literal_compare │ │ │ │ │ ├── no_boolean_literal_compare_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── no_empty_block │ │ │ │ │ ├── no_empty_block_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── no_equal_arguments │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── no_equal_arguments_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── no_equal_then_else │ │ │ │ │ ├── no_equal_then_else_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── no_magic_number │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── no_magic_number_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── no_object_declaration │ │ │ │ │ ├── no_object_declaration_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_async_await │ │ │ │ │ ├── prefer_async_await_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_commenting_analyzer_ignores │ │ │ │ │ ├── prefer_commenting_analyzer_ignores.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_conditional_expressions │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── prefer_conditional_expressions_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_const_border_radius │ │ │ │ │ ├── prefer_const_border_radius_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_correct_edge_insets_constructor │ │ │ │ │ ├── models │ │ │ │ │ │ ├── edge_insets_data.dart │ │ │ │ │ │ └── edge_insets_param.dart │ │ │ │ │ ├── prefer_correct_edge_insets_constructor_rule.dart │ │ │ │ │ ├── validator.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_correct_identifier_length │ │ │ │ │ ├── prefer_correct_identifier_length_rule.dart │ │ │ │ │ ├── utils │ │ │ │ │ │ └── config_parser.dart │ │ │ │ │ ├── validator.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_correct_test_file_name │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── prefer_correct_test_file_name_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_correct_type_name │ │ │ │ │ ├── prefer_correct_type_name_rule.dart │ │ │ │ │ ├── utils │ │ │ │ │ │ └── config_parser.dart │ │ │ │ │ ├── validator.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_define_hero_tag │ │ │ │ │ ├── prefer_define_hero_tag_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_enums_by_name │ │ │ │ │ ├── prefer_enums_by_name_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_extracting_callbacks │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── prefer_extracting_callbacks_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_first │ │ │ │ │ ├── prefer_first_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_immediate_return │ │ │ │ │ ├── prefer_immediate_return_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_intl_name │ │ │ │ │ ├── prefer_intl_name_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_iterable_of │ │ │ │ │ ├── prefer_iterable_of_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_last │ │ │ │ │ ├── prefer_last_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_match_file_name │ │ │ │ │ ├── prefer_match_file_name_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_moving_to_variable │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── prefer_moving_to_variable_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_on_push_cd_strategy │ │ │ │ │ ├── prefer_on_push_cd_strategy_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_provide_intl_description │ │ │ │ │ ├── prefer_provide_intl_description_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_single_widget_per_file │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── prefer_single_widget_per_file_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_static_class │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── prefer_static_class_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_trailing_comma │ │ │ │ │ ├── config_parser.dart │ │ │ │ │ ├── prefer_trailing_comma_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── prefer_using_list_view │ │ │ │ │ ├── prefer_using_list_view_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── provide_correct_intl_args │ │ │ │ │ ├── provide_correct_intl_args_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ ├── tag_name │ │ │ │ │ ├── tag_name_rule.dart │ │ │ │ │ ├── utils │ │ │ │ │ │ └── config_parser.dart │ │ │ │ │ └── visitor.dart │ │ │ │ │ └── use_setstate_synchronously │ │ │ │ │ ├── config.dart │ │ │ │ │ ├── fact.dart │ │ │ │ │ ├── helpers.dart │ │ │ │ │ ├── use_setstate_synchronously_rule.dart │ │ │ │ │ └── visitor.dart │ │ │ └── utils │ │ │ │ └── report_utils.dart │ │ ├── unnecessary_nullable_analyzer │ │ │ ├── declarations_visitor.dart │ │ │ ├── invocations_visitor.dart │ │ │ ├── models │ │ │ │ ├── invocations_usage.dart │ │ │ │ ├── unnecessary_nullable_file_report.dart │ │ │ │ └── unnecessary_nullable_issue.dart │ │ │ ├── reporters │ │ │ │ ├── reporter_factory.dart │ │ │ │ ├── reporters_list │ │ │ │ │ ├── console │ │ │ │ │ │ └── unnecessary_nullable_console_reporter.dart │ │ │ │ │ └── json │ │ │ │ │ │ └── unnecessary_nullable_json_reporter.dart │ │ │ │ └── unnecessary_nullable_report_params.dart │ │ │ ├── unnecessary_nullable_analysis_config.dart │ │ │ ├── unnecessary_nullable_analyzer.dart │ │ │ └── unnecessary_nullable_config.dart │ │ ├── unused_code_analyzer │ │ │ ├── models │ │ │ │ ├── file_elements_usage.dart │ │ │ │ ├── unused_code_file_report.dart │ │ │ │ └── unused_code_issue.dart │ │ │ ├── public_code_visitor.dart │ │ │ ├── reporters │ │ │ │ ├── reporter_factory.dart │ │ │ │ ├── reporters_list │ │ │ │ │ ├── console │ │ │ │ │ │ └── unused_code_console_reporter.dart │ │ │ │ │ └── json │ │ │ │ │ │ └── unused_code_json_reporter.dart │ │ │ │ └── unused_code_report_params.dart │ │ │ ├── unused_code_analysis_config.dart │ │ │ ├── unused_code_analyzer.dart │ │ │ ├── unused_code_config.dart │ │ │ └── used_code_visitor.dart │ │ ├── unused_files_analyzer │ │ │ ├── models │ │ │ │ └── unused_files_file_report.dart │ │ │ ├── reporters │ │ │ │ ├── reporter_factory.dart │ │ │ │ ├── reporters_list │ │ │ │ │ ├── console │ │ │ │ │ │ └── unused_files_console_reporter.dart │ │ │ │ │ └── json │ │ │ │ │ │ └── unused_files_json_reporter.dart │ │ │ │ └── unused_files_report_params.dart │ │ │ ├── unused_files_analysis_config.dart │ │ │ ├── unused_files_analyzer.dart │ │ │ ├── unused_files_config.dart │ │ │ └── unused_files_visitor.dart │ │ └── unused_l10n_analyzer │ │ │ ├── models │ │ │ ├── unused_l10n_file_report.dart │ │ │ └── unused_l10n_issue.dart │ │ │ ├── reporters │ │ │ ├── reporter_factory.dart │ │ │ ├── reporters_list │ │ │ │ ├── console │ │ │ │ │ └── unused_l10n_console_reporter.dart │ │ │ │ └── json │ │ │ │ │ └── unused_l10n_json_reporter.dart │ │ │ └── unused_l10n_report_params.dart │ │ │ ├── unused_l10n_analysis_config.dart │ │ │ ├── unused_l10n_analyzer.dart │ │ │ ├── unused_l10n_config.dart │ │ │ └── unused_l10n_visitor.dart │ ├── cli │ │ ├── cli_runner.dart │ │ ├── commands │ │ │ ├── analyze_command.dart │ │ │ ├── base_command.dart │ │ │ ├── check_unnecessary_nullable_command.dart │ │ │ ├── check_unused_code_command.dart │ │ │ ├── check_unused_files_command.dart │ │ │ └── check_unused_l10n_command.dart │ │ ├── exceptions │ │ │ └── invalid_argument_exception.dart │ │ ├── models │ │ │ ├── flag_names.dart │ │ │ └── parsed_arguments.dart │ │ └── utils │ │ │ └── detect_sdk_path.dart │ ├── config_builder │ │ ├── analysis_options_utils.dart │ │ ├── config_builder.dart │ │ └── models │ │ │ └── analysis_options.dart │ ├── logger │ │ ├── logger.dart │ │ └── progress.dart │ ├── reporters │ │ ├── github_workflow_commands.dart │ │ ├── models │ │ │ ├── checkstyle_reporter.dart │ │ │ ├── code_climate_reporter.dart │ │ │ ├── console_reporter.dart │ │ │ ├── file_report.dart │ │ │ ├── github_reporter.dart │ │ │ ├── html_reporter.dart │ │ │ ├── json_reporter.dart │ │ │ └── reporter.dart │ │ └── resources │ │ │ ├── base.css │ │ │ ├── main.css │ │ │ ├── normalize.css │ │ │ └── variables.css │ ├── utils │ │ ├── analyzer_utils.dart │ │ ├── dart_types_utils.dart │ │ ├── exclude_utils.dart │ │ ├── flame_type_utils.dart │ │ ├── flutter_types_utils.dart │ │ ├── node_utils.dart │ │ ├── object_extensions.dart │ │ ├── path_utils.dart │ │ ├── string_extensions.dart │ │ ├── suppression.dart │ │ └── yaml_utils.dart │ └── version.dart ├── unnecessary_nullable_analyzer.dart ├── unused_code_analyzer.dart ├── unused_files_analyzer.dart └── unused_l10n_analyzer.dart ├── pubspec.yaml ├── test ├── resources │ ├── abstract_class.dart │ ├── analysis_options_common.yaml │ ├── analysis_options_pkg.yaml │ ├── analysis_options_repo.yaml │ ├── analysis_options_with_extends.yaml │ ├── analysis_options_with_import.yaml │ ├── class_with_factory_constructors.dart │ ├── cyclomatic_complexity_metric_example.dart │ ├── extension.dart │ ├── file_paths_folder │ │ ├── first_file.dart │ │ ├── inner_folder │ │ │ └── first_inner_file.dart │ │ └── second_file.dart │ ├── functions.dart │ ├── halstead_volume_metric_example.dart │ ├── lines_of_code_metric_example.dart │ ├── lint_analyzer │ │ ├── lint_analyzer_example.dart │ │ └── lint_analyzer_exclude_example.dart │ ├── maintability_index_metric_example.dart │ ├── maximum_nesting_level_metric_example.dart │ ├── mixin.dart │ ├── number_of_parameters_metric_example.dart │ ├── source_lines_of_code_metric_example.dart │ ├── suppression_all_example.dart │ ├── suppression_example.dart │ ├── technical_debt_metric_example.dart │ ├── technical_debt_metric_example2.dart │ ├── test_lints │ │ ├── lib │ │ │ ├── analysis_options.1.0.0.yaml │ │ │ ├── analysis_options.yaml │ │ │ └── presets.yaml │ │ └── pubspec.yaml │ ├── unnecessary_nullable_analyzer │ │ ├── generated │ │ │ └── some_file.freezed.dart │ │ ├── nullable_class_parameters.dart │ │ ├── nullable_function_parameters.dart │ │ ├── nullable_method_parameters.dart │ │ ├── nullable_widget_key_parameters.dart │ │ ├── suppressed_file.dart │ │ └── unnecessary_nullable_example.dart │ ├── unused_code_analyzer │ │ ├── conditional_file.dart │ │ ├── conditional_prefixed_file.dart │ │ ├── export.dart │ │ ├── exported_members.dart │ │ ├── generated │ │ │ └── some_file.freezed.dart │ │ ├── library │ │ │ ├── entry_point.dart │ │ │ ├── resources │ │ │ │ ├── app_icons.dart │ │ │ │ ├── app_strings.dart │ │ │ │ └── resources.dart │ │ │ └── src │ │ │ │ └── usage.dart │ │ ├── not_used.dart │ │ ├── public_members.dart │ │ ├── suppressed_file.dart │ │ ├── unconditional_file.dart │ │ ├── unconditional_prefixed_file.dart │ │ └── unused_code_example.dart │ ├── unused_files_analyzer │ │ ├── annotation_file.dart │ │ ├── conditional_file.dart │ │ ├── enrtypoint_file.dart │ │ ├── exported_file.dart │ │ ├── generated │ │ │ └── intl │ │ │ │ ├── messages_all.dart │ │ │ │ ├── messages_en.dart │ │ │ │ └── messages_ru.dart │ │ ├── imported_file.dart │ │ ├── part_file.dart │ │ ├── suppressed_file.dart │ │ ├── unconditional_file.dart │ │ ├── unused_file.dart │ │ └── unused_files_example.dart │ ├── unused_l10n_analyzer │ │ ├── base_localization.dart │ │ ├── test_i18n.dart │ │ └── unused_l10n_analyzer_example.dart │ └── weight_of_class_example.dart ├── src │ ├── analyzer_plugin │ │ └── analyzer_plugin_utils_test.dart │ ├── analyzers │ │ ├── lint_analyzer │ │ │ ├── anti_patterns │ │ │ │ ├── anti_patterns_list │ │ │ │ │ ├── long_method │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ │ └── widget.dart │ │ │ │ │ │ └── long_method_test.dart │ │ │ │ │ └── long_parameter_list │ │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ │ └── long_parameter_list_test.dart │ │ │ │ ├── pattern_utils_test.dart │ │ │ │ └── patterns_factory_test.dart │ │ │ ├── lint_analyzer_test.dart │ │ │ ├── lint_config_test.dart │ │ │ ├── lint_utils_test.dart │ │ │ ├── metrics │ │ │ │ ├── metric_utils_test.dart │ │ │ │ ├── metrics_factory_test.dart │ │ │ │ ├── metrics_list │ │ │ │ │ ├── class_metric_test.dart │ │ │ │ │ ├── cyclomatic_complexity │ │ │ │ │ │ ├── cyclomatic_complexity_flow_visitor_test.dart │ │ │ │ │ │ └── cyclomatic_complexity_metric_test.dart │ │ │ │ │ ├── function_metric_test.dart │ │ │ │ │ ├── halstead_volume │ │ │ │ │ │ ├── halstead_volume_ast_visitor_test.dart │ │ │ │ │ │ └── halstead_volume_metric_test.dart │ │ │ │ │ ├── lines_of_code_metric_test.dart │ │ │ │ │ ├── maintainability_index_metric_test.dart │ │ │ │ │ ├── maximum_nesting_level │ │ │ │ │ │ ├── maximum_nesting_level_metric_test.dart │ │ │ │ │ │ └── nesting_level_visitor_test.dart │ │ │ │ │ ├── number_of_methods_test.dart │ │ │ │ │ ├── number_of_parameters_metric_test.dart │ │ │ │ │ ├── source_lines_of_code │ │ │ │ │ │ ├── source_code_visitor_test.dart │ │ │ │ │ │ └── source_lines_of_code_metric_test.dart │ │ │ │ │ ├── technical_debt │ │ │ │ │ │ └── technical_debt_metric_test.dart │ │ │ │ │ └── weight_of_class_test.dart │ │ │ │ └── models │ │ │ │ │ └── metric_value_level_test.dart │ │ │ ├── models │ │ │ │ ├── report_test.dart │ │ │ │ ├── severity_test.dart │ │ │ │ └── suppression_test.dart │ │ │ ├── reporters │ │ │ │ ├── reporter_factory_test.dart │ │ │ │ ├── reporters_list │ │ │ │ │ ├── checkstyle │ │ │ │ │ │ └── lint_checkstyle_reporter_test.dart │ │ │ │ │ ├── code_climate │ │ │ │ │ │ └── lint_code_climate_reporter_test.dart │ │ │ │ │ ├── console │ │ │ │ │ │ ├── lint_console_reporter_helper_test.dart │ │ │ │ │ │ └── lint_console_reporter_test.dart │ │ │ │ │ ├── html │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── icon_test.dart │ │ │ │ │ │ │ ├── issue_details_tooltip_test.dart │ │ │ │ │ │ │ └── report_details_tooltip_test.dart │ │ │ │ │ │ └── utility_functions_test.dart │ │ │ │ │ ├── json │ │ │ │ │ │ └── lint_json_reporter_test.dart │ │ │ │ │ ├── lint_github_reporter_test.dart │ │ │ │ │ └── report_example.dart │ │ │ │ └── utility_selector_test.dart │ │ │ ├── rules │ │ │ │ ├── rule_utils_test.dart │ │ │ │ ├── rules_factory_test.dart │ │ │ │ └── rules_list │ │ │ │ │ ├── always_remove_listener │ │ │ │ │ ├── always_remove_listener_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ └── value_notifier_example.dart │ │ │ │ │ ├── arguments_ordering │ │ │ │ │ ├── arguments_ordering_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ ├── class_example.dart │ │ │ │ │ │ ├── function_example.dart │ │ │ │ │ │ ├── mixed_example.dart │ │ │ │ │ │ ├── widget_example.dart │ │ │ │ │ │ └── widget_example_child_last.dart │ │ │ │ │ ├── avoid_banned_imports │ │ │ │ │ ├── avoid_banned_imports_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_border_all │ │ │ │ │ ├── avoid_border_all_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ └── example_with_final_variables.dart │ │ │ │ │ ├── avoid_cascade_after_if_null │ │ │ │ │ ├── avoid_cascade_after_if_null_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_collection_methods_with_unrelated_types │ │ │ │ │ ├── avoid_collection_methods_with_unrelated_types_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ ├── dynamic_example.dart │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ └── nullable_example.dart │ │ │ │ │ ├── avoid_creating_vector_in_update │ │ │ │ │ ├── avoid_creating_vector_in_update_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_double_slash_imports │ │ │ │ │ ├── avoid_double_slash_imports_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_duplicate_exports │ │ │ │ │ ├── avoid_duplicate_exports_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_dynamic │ │ │ │ │ ├── avoid_dynamic_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_expanded_as_spacer │ │ │ │ │ ├── avoid_expanded_as_spacer_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_global_state │ │ │ │ │ ├── avoid_global_state_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_ignoring_return_values │ │ │ │ │ ├── avoid_ignoring_return_values_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_initializing_in_on_mount │ │ │ │ │ ├── avoid_initializing_in_on_mount_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_late_keyword │ │ │ │ │ ├── avoid_late_keyword_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_missing_enum_constant_in_map │ │ │ │ │ ├── avoid_missing_enum_constant_in_map_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_nested_conditional_expressions │ │ │ │ │ ├── avoid_nested_conditional_expressions_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_non_ascii_symbols │ │ │ │ │ ├── avoid_non_ascii_symbols_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_non_null_assertion │ │ │ │ │ ├── avoid_non_null_assertion_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_passing_async_when_sync_expected │ │ │ │ │ ├── avoid_passing_async_when_sync_expected_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_preserve_whitespace_false │ │ │ │ │ ├── avoid_preserve_whitespace_false_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_redundant_async │ │ │ │ │ ├── avoid_redundant_async_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_redundant_async_on_load │ │ │ │ │ ├── avoid_redundant_async_on_load_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_returning_widgets │ │ │ │ │ ├── avoid_returning_widgets_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ ├── not_named_parameter_example.dart │ │ │ │ │ │ ├── nullable_example.dart │ │ │ │ │ │ └── provider_example.dart │ │ │ │ │ ├── avoid_shrink_wrap_in_lists │ │ │ │ │ ├── avoid_shrink_wrap_in_lists_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_substring │ │ │ │ │ ├── avoid_substring_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_throw_in_catch_block │ │ │ │ │ ├── avoid_throw_in_catch_block_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_top_level_members_in_tests │ │ │ │ │ ├── avoid_top_level_members_in_tests_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_unnecessary_conditionals │ │ │ │ │ ├── avoid_unnecessary_conditionals_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_unnecessary_setstate │ │ │ │ │ ├── avoid_unnecessary_setstate_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ └── state_subclass_example.dart │ │ │ │ │ ├── avoid_unnecessary_type_assertions │ │ │ │ │ ├── avoid_unnecessary_type_assertions_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ ├── example_cases.dart │ │ │ │ │ │ ├── example_with_is.dart │ │ │ │ │ │ └── example_with_not_is.dart │ │ │ │ │ ├── avoid_unnecessary_type_casts │ │ │ │ │ ├── avoid_unnecessary_type_casts_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_unrelated_type_assertions │ │ │ │ │ ├── avoid_unrelated_type_assertions_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── avoid_unused_parameters │ │ │ │ │ ├── avoid_unused_parameters_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ ├── correct_example.dart │ │ │ │ │ │ ├── incorrect_example.dart │ │ │ │ │ │ └── tear_off_example.dart │ │ │ │ │ ├── avoid_wrapping_in_padding │ │ │ │ │ ├── avoid_wrapping_in_padding_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── ban_name │ │ │ │ │ ├── ban_name_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ ├── classes.dart │ │ │ │ │ │ ├── dialogs.dart │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── binary_expression_operand_order │ │ │ │ │ ├── binary_expression_operand_order_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── check_for_equals_in_render_object_setters │ │ │ │ │ ├── check_for_equals_in_render_object_setters_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── component_annotation_arguments_ordering │ │ │ │ │ ├── component_annotation_arguments_ordering_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── consistent_update_render_object │ │ │ │ │ ├── consistent_update_render_object_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ ├── correct_example.dart │ │ │ │ │ │ └── incorrect_example.dart │ │ │ │ │ ├── correct_game_instantiating │ │ │ │ │ ├── correct_game_instantiating_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── double_literal_format │ │ │ │ │ ├── double_literal_format_rule_test.dart │ │ │ │ │ └── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ ├── format_comment │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ ├── example_documentation.dart │ │ │ │ │ │ ├── example_without_issue.dart │ │ │ │ │ │ └── multiline_example.dart │ │ │ │ │ └── format_comment_rule_test.dart │ │ │ │ │ ├── list_all_equatable_fields │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── list_all_equatable_fields_rule_test.dart │ │ │ │ │ ├── member_ordering │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── alphabetical_correct_example.dart │ │ │ │ │ │ ├── alphabetical_example.dart │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ ├── flutter_widget_example.dart │ │ │ │ │ │ ├── multiple_classes_example.dart │ │ │ │ │ │ ├── not_widget_example.dart │ │ │ │ │ │ └── type_alphabetical_example.dart │ │ │ │ │ └── member_ordering_rule_test.dart │ │ │ │ │ ├── missing_test_assertion │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── correct_example.dart │ │ │ │ │ │ ├── custom_assertions_example.dart │ │ │ │ │ │ ├── custom_methods_example.dart │ │ │ │ │ │ └── incorrect_example.dart │ │ │ │ │ └── missing_test_assertion_test.dart │ │ │ │ │ ├── newline_before_return │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── newline_before_return_rule_test.dart │ │ │ │ │ ├── no_boolean_literal_compare │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── no_boolean_literal_compare_rule_test.dart │ │ │ │ │ ├── no_empty_block │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── no_empty_block_rule_test.dart │ │ │ │ │ ├── no_equal_arguments │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ ├── incorrect_example.dart │ │ │ │ │ │ ├── named_parameters_example.dart │ │ │ │ │ │ └── provider_example.dart │ │ │ │ │ └── no_equal_arguments_rule_test.dart │ │ │ │ │ ├── no_equal_then_else │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── no_equal_then_else_rule_test.dart │ │ │ │ │ ├── no_magic_number │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── array_example.dart │ │ │ │ │ │ ├── enum_example.dart │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ ├── exceptions_example.dart │ │ │ │ │ │ └── incorrect_example.dart │ │ │ │ │ └── no_magic_number_rule_test.dart │ │ │ │ │ ├── no_object_declaration │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── no_object_declaration_rule_test.dart │ │ │ │ │ ├── prefer_async_await │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── prefer_async_await_rule_test.dart │ │ │ │ │ ├── prefer_commenting_analyzer_ignores │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── prefer_commenting_analyzer_ignores_rule_test.dart │ │ │ │ │ ├── prefer_conditional_expressions │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ └── nested_example.dart │ │ │ │ │ └── prefer_conditional_expressions_rule_test.dart │ │ │ │ │ ├── prefer_const_border_radius │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── prefer_const_border_radius_rule_test.dart │ │ │ │ │ ├── prefer_correct_edge_insets_constructor │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── example_direction_only.dart │ │ │ │ │ │ ├── example_ltrb.dart │ │ │ │ │ │ ├── example_only.dart │ │ │ │ │ │ ├── example_steb.dart │ │ │ │ │ │ ├── example_symmetric.dart │ │ │ │ │ │ └── flutter_defines.dart │ │ │ │ │ └── prefer_correct_edge_insets_constructor_rule_test.dart │ │ │ │ │ ├── prefer_correct_identifier_length │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── class_example.dart │ │ │ │ │ │ ├── common_example.dart │ │ │ │ │ │ ├── enum_example.dart │ │ │ │ │ │ ├── extension_example.dart │ │ │ │ │ │ ├── mixin_example.dart │ │ │ │ │ │ └── without_error_example.dart │ │ │ │ │ └── prefer_correct_identifier_length_rule_test.dart │ │ │ │ │ ├── prefer_correct_test_file_name │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── correct_example.dart │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── prefer_correct_test_file_name_rule_test.dart │ │ │ │ │ ├── prefer_correct_type_name │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── class_example.dart │ │ │ │ │ │ ├── enum_example.dart │ │ │ │ │ │ ├── extension_example.dart │ │ │ │ │ │ └── mixin_example.dart │ │ │ │ │ └── prefer_correct_type_name_rule_test.dart │ │ │ │ │ ├── prefer_define_hero_tag │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── prefer_define_hero_tag_rule_test.dart │ │ │ │ │ ├── prefer_enums_by_name │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── prefer_enums_by_name_rule_test.dart │ │ │ │ │ ├── prefer_extracting_callbacks │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ └── example_max_line_count.dart │ │ │ │ │ └── prefer_extracting_callbacks_rule_test.dart │ │ │ │ │ ├── prefer_first │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── prefer_first_rule_test.dart │ │ │ │ │ ├── prefer_immediate_return │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── prefer_immediate_return_rule_test.dart │ │ │ │ │ ├── prefer_intl_name │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ ├── incorrect_example.dart │ │ │ │ │ │ └── not_existing_example.dart │ │ │ │ │ └── prefer_intl_name_rule_test.dart │ │ │ │ │ ├── prefer_iterable_of │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── double_linked_queue_example.dart │ │ │ │ │ │ ├── hash_set_example.dart │ │ │ │ │ │ ├── linked_hash_set_example.dart │ │ │ │ │ │ ├── list_example.dart │ │ │ │ │ │ ├── list_queue_example.dart │ │ │ │ │ │ ├── queue_example.dart │ │ │ │ │ │ ├── queue_list_example.dart │ │ │ │ │ │ ├── set_example.dart │ │ │ │ │ │ └── splay_tree_set_example.dart │ │ │ │ │ └── prefer_iterable_of_rule_test.dart │ │ │ │ │ ├── prefer_last │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── double_linked_queue_example.dart │ │ │ │ │ │ ├── hash_set_example.dart │ │ │ │ │ │ ├── iterable_example.dart │ │ │ │ │ │ ├── linked_hash_set_example.dart │ │ │ │ │ │ ├── list_example.dart │ │ │ │ │ │ ├── list_queue_example.dart │ │ │ │ │ │ ├── queue_example.dart │ │ │ │ │ │ ├── set_example.dart │ │ │ │ │ │ ├── splay_tree_set_example.dart │ │ │ │ │ │ ├── unmodifiable_list_view_example.dart │ │ │ │ │ │ └── unmodifiable_set_view_example.dart │ │ │ │ │ └── prefer_last_rule_test.dart │ │ │ │ │ ├── prefer_match_file_name │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── empty_file.dart │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ ├── example_with_issue.dart │ │ │ │ │ │ ├── example_with_state.dart │ │ │ │ │ │ ├── multiple_classes_example.dart │ │ │ │ │ │ ├── multiple_enums.dart │ │ │ │ │ │ ├── multiple_extensions.dart │ │ │ │ │ │ ├── multiple_mixins.dart │ │ │ │ │ │ ├── private_class.dart │ │ │ │ │ │ └── some_widget.codegen.dart │ │ │ │ │ └── prefer_match_file_name_rule_test.dart │ │ │ │ │ ├── prefer_moving_to_variable │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── arguments_example.dart │ │ │ │ │ │ ├── arguments_with_object_example.dart │ │ │ │ │ │ ├── assignment_example.dart │ │ │ │ │ │ ├── cascade_example.dart │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ ├── generics_example.dart │ │ │ │ │ │ ├── prefix_example.dart │ │ │ │ │ │ ├── provider_example.dart │ │ │ │ │ │ ├── scope_example.dart │ │ │ │ │ │ └── while_example.dart │ │ │ │ │ └── prefer_moving_to_variable_rule_test.dart │ │ │ │ │ ├── prefer_on_push_cd_strategy │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ ├── incorrect_example.dart │ │ │ │ │ │ └── missing_example.dart │ │ │ │ │ └── prefer_on_push_cd_strategy_rule_test.dart │ │ │ │ │ ├── prefer_provide_intl_description │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ └── incorrect_example.dart │ │ │ │ │ └── prefer_provide_intl_description_rule_test.dart │ │ │ │ │ ├── prefer_single_widget_per_file │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── correct_statefull_widget_example.dart │ │ │ │ │ │ ├── correct_stateless_widget_example.dart │ │ │ │ │ │ ├── flutter_defines.dart │ │ │ │ │ │ ├── incorrect_example.dart │ │ │ │ │ │ └── multi_widgets_example.dart │ │ │ │ │ └── prefer_single_widget_per_file_rule_test.dart │ │ │ │ │ ├── prefer_static_class │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── correct_example.dart │ │ │ │ │ │ ├── correct_ignore_annotation_example.dart │ │ │ │ │ │ ├── correct_ignore_names_example.dart │ │ │ │ │ │ ├── correct_ignore_private_example.dart │ │ │ │ │ │ └── incorrect_example.dart │ │ │ │ │ └── prefer_static_class_rule_test.dart │ │ │ │ │ ├── prefer_trailing_comma │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── correct_example.dart │ │ │ │ │ │ └── incorrect_example.dart │ │ │ │ │ └── prefer_trailing_comma_rule_test.dart │ │ │ │ │ ├── prefer_using_list_view │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── prefer_using_list_view_rule_test.dart │ │ │ │ │ ├── provide_correct_intl_args │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── example.dart │ │ │ │ │ │ └── incorrect_example.dart │ │ │ │ │ └── provide_correct_intl_args_rule_test.dart │ │ │ │ │ ├── tag_name │ │ │ │ │ ├── examples │ │ │ │ │ │ └── example.dart │ │ │ │ │ └── tag_name_rule_test.dart │ │ │ │ │ └── use_setstate_synchronously │ │ │ │ │ ├── examples │ │ │ │ │ ├── assert_example.dart │ │ │ │ │ ├── context_mounted.dart │ │ │ │ │ ├── example.dart │ │ │ │ │ ├── extras_try_switch.dart │ │ │ │ │ └── known_errors.dart │ │ │ │ │ └── use_setstate_synchronously_rule_test.dart │ │ │ ├── scope_visitor_test.dart │ │ │ └── utils │ │ │ │ └── report_utils_test.dart │ │ ├── unnecessary_nullable_analyzer │ │ │ └── unnecessary_nullable_analyzer_test.dart │ │ ├── unused_code_analyzer │ │ │ ├── reporters │ │ │ │ ├── reporter_factory_test.dart │ │ │ │ └── reporters_list │ │ │ │ │ ├── console │ │ │ │ │ └── unused_code_console_reporter_test.dart │ │ │ │ │ └── unused_code_json_reporter_test.dart │ │ │ ├── unused_code_analyzer_test.dart │ │ │ └── unused_code_config_test.dart │ │ ├── unused_files_analyzer │ │ │ ├── reporters │ │ │ │ ├── reporter_factory_test.dart │ │ │ │ └── reporters_list │ │ │ │ │ ├── console │ │ │ │ │ └── unused_files_console_reporter_test.dart │ │ │ │ │ └── json │ │ │ │ │ └── unused_files_json_reporter_test.dart │ │ │ ├── unused_files_analyzer_test.dart │ │ │ └── unused_files_config_test.dart │ │ ├── unused_l10n_analyzer │ │ │ ├── reporters │ │ │ │ ├── reporter_factory_test.dart │ │ │ │ └── reporters_list │ │ │ │ │ ├── console │ │ │ │ │ └── unused_l10n_console_reporter_test.dart │ │ │ │ │ └── unused_l10n_json_reporter_test.dart │ │ │ ├── unused_l10n_analyzer_test.dart │ │ │ └── unused_l10n_config_test.dart │ │ └── utils │ │ │ └── scope_utils_test.dart │ ├── cli │ │ ├── cli_runner_test.dart │ │ ├── commands │ │ │ ├── analyze_command_test.dart │ │ │ ├── base_command_test.dart │ │ │ ├── check_unnecessary_nullable_command_test.dart │ │ │ ├── check_unused_code_command_test.dart │ │ │ ├── check_unused_files_command_test.dart │ │ │ └── check_unused_l10n_command_test.dart │ │ └── utils │ │ │ └── detect_sdk_path_test.dart │ ├── config_builder │ │ ├── analysis_options_utils_test.dart │ │ └── models │ │ │ └── analysis_options_test.dart │ ├── helpers │ │ ├── anti_patterns_test_helper.dart │ │ ├── file_resolver.dart │ │ └── rule_test_helper.dart │ ├── reporters │ │ └── resources │ │ │ └── github_workflow_commands_test.dart │ └── utils │ │ ├── analyzer_utils_test.dart │ │ ├── exclude_utils_test.dart │ │ ├── node_utils_test.dart │ │ ├── path_utils_test.dart │ │ ├── string_extensions_test.dart │ │ └── yaml_utils_test.dart └── stubs_builders.dart ├── tool └── uncovered_coverage.dart └── tools └── analyzer_plugin ├── analysis_options.yaml ├── bin └── plugin.dart └── pubspec.yaml /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | This package no longer accepts contributions. 2 | -------------------------------------------------------------------------------- /.github/workflows/no_response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.github/workflows/no_response.yaml -------------------------------------------------------------------------------- /.github/workflows/package_analyze.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.github/workflows/package_analyze.yaml -------------------------------------------------------------------------------- /.github/workflows/pr_author_auto_assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.github/workflows/pr_author_auto_assign.yaml -------------------------------------------------------------------------------- /.github/workflows/pr_title_lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.github/workflows/pr_title_lint.yaml -------------------------------------------------------------------------------- /.github/workflows/sync_with_azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.github/workflows/sync_with_azure.yaml -------------------------------------------------------------------------------- /.github/workflows/sync_with_bitbucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.github/workflows/sync_with_bitbucket.yaml -------------------------------------------------------------------------------- /.github/workflows/sync_with_gitlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.github/workflows/sync_with_gitlab.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.pubignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.pubignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/RELEASE_GUIDE.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /assets/analyze-console-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/assets/analyze-console-report.png -------------------------------------------------------------------------------- /assets/flutter-favorite-badge-1200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/assets/flutter-favorite-badge-1200px.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/quick-fixes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/assets/quick-fixes.png -------------------------------------------------------------------------------- /assets/unnecessary-nullable-console-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/assets/unnecessary-nullable-console-report.png -------------------------------------------------------------------------------- /assets/unused-code-console-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/assets/unused-code-console-report.png -------------------------------------------------------------------------------- /assets/unused-files-console-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/assets/unused-files-console-report.png -------------------------------------------------------------------------------- /assets/unused-l10n-console-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/assets/unused-l10n-console-report.png -------------------------------------------------------------------------------- /bin/metrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/bin/metrics.dart -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | github_checks: 2 | annotations: false 3 | -------------------------------------------------------------------------------- /dart_dependency_validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/dart_dependency_validator.yaml -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/example/README.md -------------------------------------------------------------------------------- /lib/analyzer_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/analyzer_plugin.dart -------------------------------------------------------------------------------- /lib/cli_runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/cli_runner.dart -------------------------------------------------------------------------------- /lib/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/config.dart -------------------------------------------------------------------------------- /lib/lint_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/lint_analyzer.dart -------------------------------------------------------------------------------- /lib/presets/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/presets/all.yaml -------------------------------------------------------------------------------- /lib/presets/dart_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/presets/dart_all.yaml -------------------------------------------------------------------------------- /lib/presets/flutter_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/presets/flutter_all.yaml -------------------------------------------------------------------------------- /lib/reporters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/reporters.dart -------------------------------------------------------------------------------- /lib/src/analyzer_plugin/analyzer_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzer_plugin/analyzer_plugin.dart -------------------------------------------------------------------------------- /lib/src/analyzer_plugin/analyzer_plugin_starter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzer_plugin/analyzer_plugin_starter.dart -------------------------------------------------------------------------------- /lib/src/analyzer_plugin/analyzer_plugin_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzer_plugin/analyzer_plugin_utils.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/anti_patterns/anti_patterns_list/long_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/anti_patterns/anti_patterns_list/long_method.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/anti_patterns/anti_patterns_list/long_parameter_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/anti_patterns/anti_patterns_list/long_parameter_list.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/anti_patterns/models/pattern.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/anti_patterns/models/pattern.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/anti_patterns/pattern_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/anti_patterns/pattern_utils.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/anti_patterns/patterns_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/anti_patterns/patterns_factory.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/base_visitors/source_code_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/base_visitors/source_code_visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/lint_analysis_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/lint_analysis_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/lint_analysis_options_validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/lint_analysis_options_validator.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/lint_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/lint_analyzer.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/lint_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/lint_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/lint_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/lint_utils.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metric_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metric_utils.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_factory.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/halstead_volume/halstead_volume_ast_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/halstead_volume/halstead_volume_ast_visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/halstead_volume/halstead_volume_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/halstead_volume/halstead_volume_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/lines_of_code_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/lines_of_code_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/maintainability_index_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/maintainability_index_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/maximum_nesting_level/nesting_level_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/maximum_nesting_level/nesting_level_visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/number_of_methods_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/number_of_methods_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/number_of_parameters_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/number_of_parameters_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/source_lines_of_code/source_lines_of_code_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/source_lines_of_code/source_lines_of_code_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/technical_debt/technical_debt_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/technical_debt/technical_debt_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/technical_debt/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/technical_debt/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/metrics_list/weight_of_class_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/metrics_list/weight_of_class_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/models/class_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/models/class_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/models/file_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/models/file_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/models/function_metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/models/function_metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/models/metric.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/models/metric.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/models/metric_computation_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/models/metric_computation_result.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/models/metric_documentation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/models/metric_documentation.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/models/metric_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/models/metric_value.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/models/metric_value_level.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/models/metric_value_level.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/scope_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/scope_utils.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/metrics/scope_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/metrics/scope_visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/class_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/class_type.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/context_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/context_message.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/entity_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/entity_type.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/function_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/function_type.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/internal_resolved_unit_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/internal_resolved_unit_result.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/issue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/issue.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/lint_file_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/lint_file_report.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/replacement.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/replacement.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/report.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/scoped_class_declaration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/scoped_class_declaration.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/scoped_function_declaration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/scoped_function_declaration.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/severity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/severity.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/summary_lint_report_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/summary_lint_report_record.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/models/summary_lint_report_record_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/models/summary_lint_report_record_status.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/lint_report_params.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/lint_report_params.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporter_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporter_factory.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/checkstyle/lint_checkstyle_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/checkstyle/lint_checkstyle_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/code_climate/lint_code_climate_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/code_climate/lint_code_climate_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/code_climate/models/code_climate_issue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/code_climate/models/code_climate_issue.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/console/lint_console_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/console/lint_console_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/console/lint_console_reporter_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/console/lint_console_reporter_helper.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/github/lint_github_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/github/lint_github_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/icon.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/issue_details_tooltip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/issue_details_tooltip.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/report_details_tooltip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/report_details_tooltip.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/lint_html_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/lint_html_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/models/file_metrics_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/models/file_metrics_report.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/models/function_metrics_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/models/function_metrics_report.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/models/icon_type.dart: -------------------------------------------------------------------------------- 1 | enum IconType { 2 | complexity, 3 | issue, 4 | } 5 | -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/models/report_table_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/models/report_table_record.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/utility_functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/html/utility_functions.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/reporters_list/json/lint_json_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/reporters_list/json/lint_json_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/reporters/utility_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/reporters/utility_selector.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/base_visitors/intl_base_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/base_visitors/intl_base_visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/models/angular_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/models/angular_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/models/common_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/models/common_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/models/flame_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/models/flame_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/models/flutter_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/models/flutter_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/models/intl_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/models/intl_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/models/rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/models/rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/models/rule_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/models/rule_type.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/node_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/node_utils.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rule_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rule_utils.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_factory.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/always_remove_listener/always_remove_listener_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/always_remove_listener/always_remove_listener_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/always_remove_listener/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/always_remove_listener/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/arguments_ordering_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/arguments_ordering_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_banned_imports/avoid_banned_imports_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_banned_imports/avoid_banned_imports_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_banned_imports/utils/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_banned_imports/utils/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_banned_imports/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_banned_imports/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_border_all/avoid_border_all_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_border_all/avoid_border_all_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_border_all/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_border_all/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_cascade_after_if_null/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_cascade_after_if_null/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_creating_vector_in_update/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_creating_vector_in_update/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_double_slash_imports/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_double_slash_imports/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_duplicate_exports/avoid_duplicate_exports_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_duplicate_exports/avoid_duplicate_exports_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_duplicate_exports/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_duplicate_exports/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_dynamic/avoid_dynamic_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_dynamic/avoid_dynamic_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_dynamic/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_dynamic/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_expanded_as_spacer/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_expanded_as_spacer/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_global_state/avoid_global_state_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_global_state/avoid_global_state_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_global_state/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_global_state/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_ignoring_return_values/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_ignoring_return_values/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_initializing_in_on_mount/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_initializing_in_on_mount/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_late_keyword/avoid_late_keyword_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_late_keyword/avoid_late_keyword_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_late_keyword/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_late_keyword/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_late_keyword/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_late_keyword/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_missing_enum_constant_in_map/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_missing_enum_constant_in_map/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_nested_conditional_expressions/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_nested_conditional_expressions/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_nested_conditional_expressions/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_nested_conditional_expressions/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_non_ascii_symbols/avoid_non_ascii_symbols_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_non_ascii_symbols/avoid_non_ascii_symbols_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_non_ascii_symbols/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_non_ascii_symbols/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_non_null_assertion/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_non_null_assertion/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_passing_async_when_sync_expected/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_passing_async_when_sync_expected/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_preserve_whitespace_false/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_preserve_whitespace_false/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_redundant_async/avoid_redundant_async_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_redundant_async/avoid_redundant_async_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_redundant_async/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_redundant_async/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_redundant_async_on_load/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_redundant_async_on_load/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/avoid_returning_widgets_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/avoid_returning_widgets_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/visit_declaration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/visit_declaration.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_shrink_wrap_in_lists/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_shrink_wrap_in_lists/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_substring/avoid_substring_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_substring/avoid_substring_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_substring/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_substring/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_throw_in_catch_block/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_throw_in_catch_block/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_top_level_members_in_tests/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_top_level_members_in_tests/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_conditionals/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_conditionals/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_setstate/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_setstate/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_type_assertions/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_type_assertions/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_type_casts/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_type_casts/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unrelated_type_assertions/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unrelated_type_assertions/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unused_parameters/avoid_unused_parameters_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unused_parameters/avoid_unused_parameters_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unused_parameters/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_unused_parameters/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_wrapping_in_padding/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/avoid_wrapping_in_padding/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/ban_name/ban_name_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/ban_name/ban_name_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/ban_name/utils/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/ban_name/utils/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/ban_name/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/ban_name/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/binary_expression_operand_order/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/binary_expression_operand_order/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/check_for_equals_in_render_object_setters/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/check_for_equals_in_render_object_setters/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/common_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/common_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/component_annotation_arguments_ordering/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/component_annotation_arguments_ordering/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/consistent_update_render_object/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/consistent_update_render_object/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/correct_game_instantiating/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/correct_game_instantiating/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/double_literal_format/double_literal_format_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/double_literal_format/double_literal_format_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/double_literal_format/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/double_literal_format/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/format_comment/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/format_comment/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/format_comment/format_comment_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/format_comment/format_comment_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/format_comment/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/format_comment/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/list_all_equatable_fields/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/list_all_equatable_fields/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/member_ordering_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/member_ordering_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/models/annotation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/models/annotation.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/models/field_keyword.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/models/field_keyword.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/models/member_group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/models/member_group.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/models/member_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/models/member_type.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/models/modifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/models/modifier.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/missing_test_assertion/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/missing_test_assertion/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/missing_test_assertion/missing_test_assertion_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/missing_test_assertion/missing_test_assertion_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/missing_test_assertion/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/missing_test_assertion/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/newline_before_return/newline_before_return_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/newline_before_return/newline_before_return_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/newline_before_return/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/newline_before_return/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_boolean_literal_compare/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_boolean_literal_compare/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_empty_block/no_empty_block_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_empty_block/no_empty_block_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_empty_block/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_empty_block/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/no_equal_arguments_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/no_equal_arguments_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_equal_then_else/no_equal_then_else_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_equal_then_else/no_equal_then_else_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_equal_then_else/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_equal_then_else/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/no_magic_number_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/no_magic_number_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_object_declaration/no_object_declaration_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_object_declaration/no_object_declaration_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/no_object_declaration/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/no_object_declaration/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_async_await/prefer_async_await_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_async_await/prefer_async_await_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_async_await/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_async_await/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_commenting_analyzer_ignores/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_commenting_analyzer_ignores/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_conditional_expressions/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_conditional_expressions/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_conditional_expressions/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_conditional_expressions/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_const_border_radius/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_const_border_radius/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_edge_insets_constructor/validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_edge_insets_constructor/validator.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_edge_insets_constructor/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_edge_insets_constructor/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_identifier_length/utils/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_identifier_length/utils/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_identifier_length/validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_identifier_length/validator.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_identifier_length/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_identifier_length/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_test_file_name/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_test_file_name/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_test_file_name/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_test_file_name/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/utils/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/utils/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/validator.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_define_hero_tag/prefer_define_hero_tag_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_define_hero_tag/prefer_define_hero_tag_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_define_hero_tag/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_define_hero_tag/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_enums_by_name/prefer_enums_by_name_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_enums_by_name/prefer_enums_by_name_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_enums_by_name/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_enums_by_name/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_extracting_callbacks/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_extracting_callbacks/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_extracting_callbacks/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_extracting_callbacks/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_first/prefer_first_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_first/prefer_first_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_first/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_first/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_immediate_return/prefer_immediate_return_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_immediate_return/prefer_immediate_return_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_immediate_return/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_immediate_return/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/prefer_intl_name_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/prefer_intl_name_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/prefer_iterable_of_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/prefer_iterable_of_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/prefer_last_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/prefer_last_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/prefer_match_file_name_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/prefer_match_file_name_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_moving_to_variable/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_moving_to_variable/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_moving_to_variable/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_moving_to_variable/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_on_push_cd_strategy/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_on_push_cd_strategy/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_provide_intl_description/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_provide_intl_description/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_single_widget_per_file/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_single_widget_per_file/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_single_widget_per_file/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_single_widget_per_file/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_static_class/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_static_class/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_static_class/prefer_static_class_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_static_class/prefer_static_class_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_static_class/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_static_class/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_trailing_comma/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_trailing_comma/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_trailing_comma/prefer_trailing_comma_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_trailing_comma/prefer_trailing_comma_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_trailing_comma/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_trailing_comma/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_using_list_view/prefer_using_list_view_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_using_list_view/prefer_using_list_view_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_using_list_view/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/prefer_using_list_view/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/provide_correct_intl_args/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/provide_correct_intl_args/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/tag_name/tag_name_rule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/tag_name/tag_name_rule.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/tag_name/utils/config_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/tag_name/utils/config_parser.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/tag_name/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/tag_name/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/fact.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/fact.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/helpers.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/lint_analyzer/utils/report_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/lint_analyzer/utils/report_utils.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unnecessary_nullable_analyzer/declarations_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unnecessary_nullable_analyzer/declarations_visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unnecessary_nullable_analyzer/invocations_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unnecessary_nullable_analyzer/invocations_visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unnecessary_nullable_analyzer/models/invocations_usage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unnecessary_nullable_analyzer/models/invocations_usage.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unnecessary_nullable_analyzer/models/unnecessary_nullable_file_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unnecessary_nullable_analyzer/models/unnecessary_nullable_file_report.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unnecessary_nullable_analyzer/models/unnecessary_nullable_issue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unnecessary_nullable_analyzer/models/unnecessary_nullable_issue.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unnecessary_nullable_analyzer/reporters/reporter_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unnecessary_nullable_analyzer/reporters/reporter_factory.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unnecessary_nullable_analyzer/reporters/unnecessary_nullable_report_params.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unnecessary_nullable_analyzer/reporters/unnecessary_nullable_report_params.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unnecessary_nullable_analyzer/unnecessary_nullable_analysis_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unnecessary_nullable_analyzer/unnecessary_nullable_analysis_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unnecessary_nullable_analyzer/unnecessary_nullable_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unnecessary_nullable_analyzer/unnecessary_nullable_analyzer.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unnecessary_nullable_analyzer/unnecessary_nullable_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unnecessary_nullable_analyzer/unnecessary_nullable_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/models/file_elements_usage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/models/file_elements_usage.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/models/unused_code_file_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/models/unused_code_file_report.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/models/unused_code_issue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/models/unused_code_issue.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/public_code_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/public_code_visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/reporters/reporter_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/reporters/reporter_factory.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/reporters/reporters_list/console/unused_code_console_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/reporters/reporters_list/console/unused_code_console_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/reporters/reporters_list/json/unused_code_json_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/reporters/reporters_list/json/unused_code_json_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/reporters/unused_code_report_params.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/reporters/unused_code_report_params.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/unused_code_analysis_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/unused_code_analysis_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/unused_code_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/unused_code_analyzer.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/unused_code_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/unused_code_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_code_analyzer/used_code_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_code_analyzer/used_code_visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_files_analyzer/models/unused_files_file_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_files_analyzer/models/unused_files_file_report.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_files_analyzer/reporters/reporter_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_files_analyzer/reporters/reporter_factory.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_files_analyzer/reporters/reporters_list/json/unused_files_json_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_files_analyzer/reporters/reporters_list/json/unused_files_json_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_files_analyzer/reporters/unused_files_report_params.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_files_analyzer/reporters/unused_files_report_params.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_files_analyzer/unused_files_analysis_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_files_analyzer/unused_files_analysis_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_files_analyzer/unused_files_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_files_analyzer/unused_files_analyzer.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_files_analyzer/unused_files_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_files_analyzer/unused_files_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_files_analyzer/unused_files_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_files_analyzer/unused_files_visitor.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_l10n_analyzer/models/unused_l10n_file_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_l10n_analyzer/models/unused_l10n_file_report.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_l10n_analyzer/models/unused_l10n_issue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_l10n_analyzer/models/unused_l10n_issue.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_l10n_analyzer/reporters/reporter_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_l10n_analyzer/reporters/reporter_factory.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_l10n_analyzer/reporters/reporters_list/console/unused_l10n_console_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_l10n_analyzer/reporters/reporters_list/console/unused_l10n_console_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_l10n_analyzer/reporters/reporters_list/json/unused_l10n_json_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_l10n_analyzer/reporters/reporters_list/json/unused_l10n_json_reporter.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_l10n_analyzer/reporters/unused_l10n_report_params.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_l10n_analyzer/reporters/unused_l10n_report_params.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_l10n_analyzer/unused_l10n_analysis_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_l10n_analyzer/unused_l10n_analysis_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_l10n_analyzer/unused_l10n_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_l10n_analyzer/unused_l10n_analyzer.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_l10n_analyzer/unused_l10n_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_l10n_analyzer/unused_l10n_config.dart -------------------------------------------------------------------------------- /lib/src/analyzers/unused_l10n_analyzer/unused_l10n_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/analyzers/unused_l10n_analyzer/unused_l10n_visitor.dart -------------------------------------------------------------------------------- /lib/src/cli/cli_runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/cli_runner.dart -------------------------------------------------------------------------------- /lib/src/cli/commands/analyze_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/commands/analyze_command.dart -------------------------------------------------------------------------------- /lib/src/cli/commands/base_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/commands/base_command.dart -------------------------------------------------------------------------------- /lib/src/cli/commands/check_unnecessary_nullable_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/commands/check_unnecessary_nullable_command.dart -------------------------------------------------------------------------------- /lib/src/cli/commands/check_unused_code_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/commands/check_unused_code_command.dart -------------------------------------------------------------------------------- /lib/src/cli/commands/check_unused_files_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/commands/check_unused_files_command.dart -------------------------------------------------------------------------------- /lib/src/cli/commands/check_unused_l10n_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/commands/check_unused_l10n_command.dart -------------------------------------------------------------------------------- /lib/src/cli/exceptions/invalid_argument_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/exceptions/invalid_argument_exception.dart -------------------------------------------------------------------------------- /lib/src/cli/models/flag_names.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/models/flag_names.dart -------------------------------------------------------------------------------- /lib/src/cli/models/parsed_arguments.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/models/parsed_arguments.dart -------------------------------------------------------------------------------- /lib/src/cli/utils/detect_sdk_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/cli/utils/detect_sdk_path.dart -------------------------------------------------------------------------------- /lib/src/config_builder/analysis_options_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/config_builder/analysis_options_utils.dart -------------------------------------------------------------------------------- /lib/src/config_builder/config_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/config_builder/config_builder.dart -------------------------------------------------------------------------------- /lib/src/config_builder/models/analysis_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/config_builder/models/analysis_options.dart -------------------------------------------------------------------------------- /lib/src/logger/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/logger/logger.dart -------------------------------------------------------------------------------- /lib/src/logger/progress.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/logger/progress.dart -------------------------------------------------------------------------------- /lib/src/reporters/github_workflow_commands.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/github_workflow_commands.dart -------------------------------------------------------------------------------- /lib/src/reporters/models/checkstyle_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/models/checkstyle_reporter.dart -------------------------------------------------------------------------------- /lib/src/reporters/models/code_climate_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/models/code_climate_reporter.dart -------------------------------------------------------------------------------- /lib/src/reporters/models/console_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/models/console_reporter.dart -------------------------------------------------------------------------------- /lib/src/reporters/models/file_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/models/file_report.dart -------------------------------------------------------------------------------- /lib/src/reporters/models/github_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/models/github_reporter.dart -------------------------------------------------------------------------------- /lib/src/reporters/models/html_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/models/html_reporter.dart -------------------------------------------------------------------------------- /lib/src/reporters/models/json_reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/models/json_reporter.dart -------------------------------------------------------------------------------- /lib/src/reporters/models/reporter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/models/reporter.dart -------------------------------------------------------------------------------- /lib/src/reporters/resources/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/resources/base.css -------------------------------------------------------------------------------- /lib/src/reporters/resources/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/resources/main.css -------------------------------------------------------------------------------- /lib/src/reporters/resources/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/resources/normalize.css -------------------------------------------------------------------------------- /lib/src/reporters/resources/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/reporters/resources/variables.css -------------------------------------------------------------------------------- /lib/src/utils/analyzer_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/analyzer_utils.dart -------------------------------------------------------------------------------- /lib/src/utils/dart_types_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/dart_types_utils.dart -------------------------------------------------------------------------------- /lib/src/utils/exclude_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/exclude_utils.dart -------------------------------------------------------------------------------- /lib/src/utils/flame_type_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/flame_type_utils.dart -------------------------------------------------------------------------------- /lib/src/utils/flutter_types_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/flutter_types_utils.dart -------------------------------------------------------------------------------- /lib/src/utils/node_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/node_utils.dart -------------------------------------------------------------------------------- /lib/src/utils/object_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/object_extensions.dart -------------------------------------------------------------------------------- /lib/src/utils/path_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/path_utils.dart -------------------------------------------------------------------------------- /lib/src/utils/string_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/string_extensions.dart -------------------------------------------------------------------------------- /lib/src/utils/suppression.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/suppression.dart -------------------------------------------------------------------------------- /lib/src/utils/yaml_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/src/utils/yaml_utils.dart -------------------------------------------------------------------------------- /lib/src/version.dart: -------------------------------------------------------------------------------- 1 | const packageVersion = '5.7.6'; 2 | -------------------------------------------------------------------------------- /lib/unnecessary_nullable_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/unnecessary_nullable_analyzer.dart -------------------------------------------------------------------------------- /lib/unused_code_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/unused_code_analyzer.dart -------------------------------------------------------------------------------- /lib/unused_files_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/unused_files_analyzer.dart -------------------------------------------------------------------------------- /lib/unused_l10n_analyzer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/lib/unused_l10n_analyzer.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/resources/abstract_class.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/abstract_class.dart -------------------------------------------------------------------------------- /test/resources/analysis_options_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/analysis_options_common.yaml -------------------------------------------------------------------------------- /test/resources/analysis_options_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/analysis_options_pkg.yaml -------------------------------------------------------------------------------- /test/resources/analysis_options_repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/analysis_options_repo.yaml -------------------------------------------------------------------------------- /test/resources/analysis_options_with_extends.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/analysis_options_with_extends.yaml -------------------------------------------------------------------------------- /test/resources/analysis_options_with_import.yaml: -------------------------------------------------------------------------------- 1 | include: package:test_lints/analysis_options.yaml 2 | -------------------------------------------------------------------------------- /test/resources/class_with_factory_constructors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/class_with_factory_constructors.dart -------------------------------------------------------------------------------- /test/resources/cyclomatic_complexity_metric_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/cyclomatic_complexity_metric_example.dart -------------------------------------------------------------------------------- /test/resources/extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/extension.dart -------------------------------------------------------------------------------- /test/resources/file_paths_folder/first_file.dart: -------------------------------------------------------------------------------- 1 | // ignore: no-empty-block 2 | void main() {} 3 | -------------------------------------------------------------------------------- /test/resources/file_paths_folder/inner_folder/first_inner_file.dart: -------------------------------------------------------------------------------- 1 | // ignore: no-empty-block 2 | void main() {} 3 | -------------------------------------------------------------------------------- /test/resources/file_paths_folder/second_file.dart: -------------------------------------------------------------------------------- 1 | // ignore: no-empty-block 2 | void main() {} 3 | -------------------------------------------------------------------------------- /test/resources/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/functions.dart -------------------------------------------------------------------------------- /test/resources/halstead_volume_metric_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/halstead_volume_metric_example.dart -------------------------------------------------------------------------------- /test/resources/lines_of_code_metric_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/lines_of_code_metric_example.dart -------------------------------------------------------------------------------- /test/resources/lint_analyzer/lint_analyzer_example.dart: -------------------------------------------------------------------------------- 1 | class LintAnalyzerExample {} 2 | -------------------------------------------------------------------------------- /test/resources/lint_analyzer/lint_analyzer_exclude_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/lint_analyzer/lint_analyzer_exclude_example.dart -------------------------------------------------------------------------------- /test/resources/maintability_index_metric_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/maintability_index_metric_example.dart -------------------------------------------------------------------------------- /test/resources/maximum_nesting_level_metric_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/maximum_nesting_level_metric_example.dart -------------------------------------------------------------------------------- /test/resources/mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/mixin.dart -------------------------------------------------------------------------------- /test/resources/number_of_parameters_metric_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/number_of_parameters_metric_example.dart -------------------------------------------------------------------------------- /test/resources/source_lines_of_code_metric_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/source_lines_of_code_metric_example.dart -------------------------------------------------------------------------------- /test/resources/suppression_all_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/suppression_all_example.dart -------------------------------------------------------------------------------- /test/resources/suppression_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/suppression_example.dart -------------------------------------------------------------------------------- /test/resources/technical_debt_metric_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/technical_debt_metric_example.dart -------------------------------------------------------------------------------- /test/resources/technical_debt_metric_example2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/technical_debt_metric_example2.dart -------------------------------------------------------------------------------- /test/resources/test_lints/lib/analysis_options.1.0.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/test_lints/lib/analysis_options.1.0.0.yaml -------------------------------------------------------------------------------- /test/resources/test_lints/lib/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:test_lints/analysis_options.1.0.0.yaml 2 | -------------------------------------------------------------------------------- /test/resources/test_lints/lib/presets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/test_lints/lib/presets.yaml -------------------------------------------------------------------------------- /test/resources/test_lints/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/test_lints/pubspec.yaml -------------------------------------------------------------------------------- /test/resources/unnecessary_nullable_analyzer/generated/some_file.freezed.dart: -------------------------------------------------------------------------------- 1 | void freeze() { 2 | print('brr'); 3 | } 4 | -------------------------------------------------------------------------------- /test/resources/unnecessary_nullable_analyzer/nullable_class_parameters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unnecessary_nullable_analyzer/nullable_class_parameters.dart -------------------------------------------------------------------------------- /test/resources/unnecessary_nullable_analyzer/nullable_function_parameters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unnecessary_nullable_analyzer/nullable_function_parameters.dart -------------------------------------------------------------------------------- /test/resources/unnecessary_nullable_analyzer/nullable_method_parameters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unnecessary_nullable_analyzer/nullable_method_parameters.dart -------------------------------------------------------------------------------- /test/resources/unnecessary_nullable_analyzer/nullable_widget_key_parameters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unnecessary_nullable_analyzer/nullable_widget_key_parameters.dart -------------------------------------------------------------------------------- /test/resources/unnecessary_nullable_analyzer/suppressed_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unnecessary_nullable_analyzer/suppressed_file.dart -------------------------------------------------------------------------------- /test/resources/unnecessary_nullable_analyzer/unnecessary_nullable_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unnecessary_nullable_analyzer/unnecessary_nullable_example.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/conditional_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/conditional_file.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/conditional_prefixed_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/conditional_prefixed_file.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/export.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/export.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/exported_members.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/exported_members.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/generated/some_file.freezed.dart: -------------------------------------------------------------------------------- 1 | void freeze() { 2 | print('brr'); 3 | } 4 | -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/library/entry_point.dart: -------------------------------------------------------------------------------- 1 | export 'src/usage.dart'; 2 | -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/library/resources/app_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/library/resources/app_icons.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/library/resources/app_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/library/resources/app_strings.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/library/resources/resources.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/library/resources/resources.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/library/src/usage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/library/src/usage.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/not_used.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/not_used.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/public_members.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/public_members.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/suppressed_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/suppressed_file.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/unconditional_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/unconditional_file.dart -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/unconditional_prefixed_file.dart: -------------------------------------------------------------------------------- 1 | int calculate() => 2; 2 | -------------------------------------------------------------------------------- /test/resources/unused_code_analyzer/unused_code_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_code_analyzer/unused_code_example.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/annotation_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/annotation_file.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/conditional_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/conditional_file.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/enrtypoint_file.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/exported_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/exported_file.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/generated/intl/messages_all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/generated/intl/messages_all.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/generated/intl/messages_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/generated/intl/messages_en.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/generated/intl/messages_ru.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/generated/intl/messages_ru.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/imported_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/imported_file.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/part_file.dart: -------------------------------------------------------------------------------- 1 | part of 'unused_files_example.dart'; 2 | -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/suppressed_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/suppressed_file.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/unconditional_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/unconditional_file.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/unused_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/unused_file.dart -------------------------------------------------------------------------------- /test/resources/unused_files_analyzer/unused_files_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_files_analyzer/unused_files_example.dart -------------------------------------------------------------------------------- /test/resources/unused_l10n_analyzer/base_localization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_l10n_analyzer/base_localization.dart -------------------------------------------------------------------------------- /test/resources/unused_l10n_analyzer/test_i18n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_l10n_analyzer/test_i18n.dart -------------------------------------------------------------------------------- /test/resources/unused_l10n_analyzer/unused_l10n_analyzer_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/unused_l10n_analyzer/unused_l10n_analyzer_example.dart -------------------------------------------------------------------------------- /test/resources/weight_of_class_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/resources/weight_of_class_example.dart -------------------------------------------------------------------------------- /test/src/analyzer_plugin/analyzer_plugin_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzer_plugin/analyzer_plugin_utils_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/anti_patterns/anti_patterns_list/long_method/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/anti_patterns/anti_patterns_list/long_method/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/anti_patterns/anti_patterns_list/long_method/examples/widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/anti_patterns/anti_patterns_list/long_method/examples/widget.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/anti_patterns/anti_patterns_list/long_method/long_method_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/anti_patterns/anti_patterns_list/long_method/long_method_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/anti_patterns/pattern_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/anti_patterns/pattern_utils_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/anti_patterns/patterns_factory_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/anti_patterns/patterns_factory_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/lint_analyzer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/lint_analyzer_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/lint_config_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/lint_config_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/lint_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/lint_utils_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metric_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metric_utils_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_factory_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_factory_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_list/class_metric_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_list/class_metric_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_list/function_metric_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_list/function_metric_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_list/halstead_volume/halstead_volume_metric_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_list/halstead_volume/halstead_volume_metric_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_list/lines_of_code_metric_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_list/lines_of_code_metric_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_list/maintainability_index_metric_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_list/maintainability_index_metric_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_list/number_of_methods_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_list/number_of_methods_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_list/number_of_parameters_metric_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_list/number_of_parameters_metric_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_list/source_lines_of_code/source_code_visitor_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_list/source_lines_of_code/source_code_visitor_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_list/technical_debt/technical_debt_metric_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_list/technical_debt/technical_debt_metric_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/metrics_list/weight_of_class_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/metrics_list/weight_of_class_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/metrics/models/metric_value_level_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/metrics/models/metric_value_level_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/models/report_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/models/report_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/models/severity_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/models/severity_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/models/suppression_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/models/suppression_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporter_factory_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporter_factory_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporters_list/checkstyle/lint_checkstyle_reporter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporters_list/checkstyle/lint_checkstyle_reporter_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporters_list/console/lint_console_reporter_helper_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporters_list/console/lint_console_reporter_helper_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporters_list/console/lint_console_reporter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporters_list/console/lint_console_reporter_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/icon_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/icon_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/issue_details_tooltip_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/issue_details_tooltip_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/report_details_tooltip_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporters_list/html/components/report_details_tooltip_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporters_list/html/utility_functions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporters_list/html/utility_functions_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporters_list/json/lint_json_reporter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporters_list/json/lint_json_reporter_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporters_list/lint_github_reporter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporters_list/lint_github_reporter_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/reporters_list/report_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/reporters_list/report_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/reporters/utility_selector_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/reporters/utility_selector_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rule_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rule_utils_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_factory_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_factory_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/always_remove_listener/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/always_remove_listener/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/arguments_ordering_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/arguments_ordering_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/examples/class_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/examples/class_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/examples/function_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/examples/function_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/examples/mixed_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/examples/mixed_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/examples/widget_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/arguments_ordering/examples/widget_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_banned_imports/avoid_banned_imports_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_banned_imports/avoid_banned_imports_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_banned_imports/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_banned_imports/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_border_all/avoid_border_all_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_border_all/avoid_border_all_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_border_all/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_border_all/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_cascade_after_if_null/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_cascade_after_if_null/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_creating_vector_in_update/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_creating_vector_in_update/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_double_slash_imports/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_double_slash_imports/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_duplicate_exports/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_duplicate_exports/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_dynamic/avoid_dynamic_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_dynamic/avoid_dynamic_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_dynamic/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_dynamic/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_expanded_as_spacer/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_expanded_as_spacer/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_global_state/avoid_global_state_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_global_state/avoid_global_state_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_global_state/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_global_state/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_ignoring_return_values/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_ignoring_return_values/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_initializing_in_on_mount/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_initializing_in_on_mount/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_late_keyword/avoid_late_keyword_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_late_keyword/avoid_late_keyword_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_late_keyword/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_late_keyword/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_missing_enum_constant_in_map/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_missing_enum_constant_in_map/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_non_ascii_symbols/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_non_ascii_symbols/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_non_null_assertion/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_non_null_assertion/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_preserve_whitespace_false/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_preserve_whitespace_false/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_redundant_async/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_redundant_async/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_redundant_async_on_load/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_redundant_async_on_load/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/examples/nullable_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_returning_widgets/examples/nullable_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_shrink_wrap_in_lists/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_shrink_wrap_in_lists/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_substring/avoid_substring_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_substring/avoid_substring_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_substring/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_substring/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_throw_in_catch_block/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_throw_in_catch_block/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_conditionals/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_conditionals/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_setstate/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_setstate/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_type_casts/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_unnecessary_type_casts/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_unrelated_type_assertions/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_unrelated_type_assertions/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_unused_parameters/examples/correct_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_unused_parameters/examples/correct_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/avoid_wrapping_in_padding/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/avoid_wrapping_in_padding/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/ban_name/ban_name_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/ban_name/ban_name_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/ban_name/examples/classes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/ban_name/examples/classes.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/ban_name/examples/dialogs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/ban_name/examples/dialogs.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/ban_name/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/ban_name/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/binary_expression_operand_order/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/binary_expression_operand_order/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/correct_game_instantiating/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/correct_game_instantiating/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/double_literal_format/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/double_literal_format/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/format_comment/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/format_comment/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/format_comment/examples/example_documentation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/format_comment/examples/example_documentation.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/format_comment/examples/example_without_issue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/format_comment/examples/example_without_issue.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/format_comment/examples/multiline_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/format_comment/examples/multiline_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/format_comment/format_comment_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/format_comment/format_comment_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/list_all_equatable_fields/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/list_all_equatable_fields/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/examples/alphabetical_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/examples/alphabetical_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/examples/flutter_widget_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/examples/flutter_widget_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/examples/not_widget_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/examples/not_widget_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/member_ordering_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/member_ordering/member_ordering_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/missing_test_assertion/examples/correct_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/missing_test_assertion/examples/correct_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/newline_before_return/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/newline_before_return/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_boolean_literal_compare/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_boolean_literal_compare/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_empty_block/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_empty_block/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_empty_block/no_empty_block_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_empty_block/no_empty_block_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/examples/incorrect_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/examples/incorrect_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/examples/provider_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/examples/provider_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/no_equal_arguments_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_arguments/no_equal_arguments_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_then_else/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_then_else/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_then_else/no_equal_then_else_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_equal_then_else/no_equal_then_else_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/examples/array_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/examples/array_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/examples/enum_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/examples/enum_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/examples/exceptions_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/examples/exceptions_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/examples/incorrect_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/examples/incorrect_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/no_magic_number_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_magic_number/no_magic_number_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/no_object_declaration/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/no_object_declaration/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_async_await/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_async_await/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_async_await/prefer_async_await_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_async_await/prefer_async_await_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_conditional_expressions/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_conditional_expressions/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_const_border_radius/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_const_border_radius/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_test_file_name/examples/correct_example.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_test_file_name/examples/example.dart: -------------------------------------------------------------------------------- 1 | // LINT 2 | void main() { 3 | print('Hello'); 4 | } 5 | -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/examples/class_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/examples/class_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/examples/enum_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/examples/enum_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/examples/mixin_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_correct_type_name/examples/mixin_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_define_hero_tag/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_define_hero_tag/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_enums_by_name/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_enums_by_name/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_extracting_callbacks/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_extracting_callbacks/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_first/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_first/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_first/prefer_first_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_first/prefer_first_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_immediate_return/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_immediate_return/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/examples/incorrect_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/examples/incorrect_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/examples/not_existing_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/examples/not_existing_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/prefer_intl_name_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_intl_name/prefer_intl_name_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/hash_set_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/hash_set_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/list_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/list_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/list_queue_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/list_queue_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/queue_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/queue_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/queue_list_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/queue_list_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/set_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/examples/set_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/prefer_iterable_of_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_iterable_of/prefer_iterable_of_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/double_linked_queue_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/double_linked_queue_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/hash_set_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/hash_set_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/iterable_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/iterable_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/linked_hash_set_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/linked_hash_set_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/list_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/list_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/list_queue_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/list_queue_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/queue_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/queue_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/set_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/set_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/splay_tree_set_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/examples/splay_tree_set_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/prefer_last_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_last/prefer_last_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/examples/empty_file.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/examples/multiple_enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/examples/multiple_enums.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/examples/multiple_mixins.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/examples/multiple_mixins.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/examples/private_class.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_match_file_name/examples/private_class.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_moving_to_variable/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_moving_to_variable/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_moving_to_variable/examples/scope_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_moving_to_variable/examples/scope_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_moving_to_variable/examples/while_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_moving_to_variable/examples/while_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_on_push_cd_strategy/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_on_push_cd_strategy/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_provide_intl_description/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_provide_intl_description/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_static_class/examples/correct_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_static_class/examples/correct_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_static_class/examples/incorrect_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_static_class/examples/incorrect_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_trailing_comma/examples/correct_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_trailing_comma/examples/correct_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_trailing_comma/examples/incorrect_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_trailing_comma/examples/incorrect_example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/prefer_using_list_view/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/prefer_using_list_view/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/provide_correct_intl_args/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/provide_correct_intl_args/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/tag_name/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/tag_name/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/tag_name/tag_name_rule_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/tag_name/tag_name_rule_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/examples/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/examples/example.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/examples/known_errors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/examples/known_errors.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/scope_visitor_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/scope_visitor_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/lint_analyzer/utils/report_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/lint_analyzer/utils/report_utils_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unnecessary_nullable_analyzer/unnecessary_nullable_analyzer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unnecessary_nullable_analyzer/unnecessary_nullable_analyzer_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_code_analyzer/reporters/reporter_factory_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_code_analyzer/reporters/reporter_factory_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_code_analyzer/reporters/reporters_list/unused_code_json_reporter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_code_analyzer/reporters/reporters_list/unused_code_json_reporter_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_code_analyzer/unused_code_analyzer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_code_analyzer/unused_code_analyzer_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_code_analyzer/unused_code_config_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_code_analyzer/unused_code_config_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_files_analyzer/reporters/reporter_factory_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_files_analyzer/reporters/reporter_factory_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_files_analyzer/unused_files_analyzer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_files_analyzer/unused_files_analyzer_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_files_analyzer/unused_files_config_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_files_analyzer/unused_files_config_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_l10n_analyzer/reporters/reporter_factory_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_l10n_analyzer/reporters/reporter_factory_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_l10n_analyzer/reporters/reporters_list/unused_l10n_json_reporter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_l10n_analyzer/reporters/reporters_list/unused_l10n_json_reporter_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_l10n_analyzer/unused_l10n_analyzer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_l10n_analyzer/unused_l10n_analyzer_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/unused_l10n_analyzer/unused_l10n_config_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/unused_l10n_analyzer/unused_l10n_config_test.dart -------------------------------------------------------------------------------- /test/src/analyzers/utils/scope_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/analyzers/utils/scope_utils_test.dart -------------------------------------------------------------------------------- /test/src/cli/cli_runner_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/cli/cli_runner_test.dart -------------------------------------------------------------------------------- /test/src/cli/commands/analyze_command_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/cli/commands/analyze_command_test.dart -------------------------------------------------------------------------------- /test/src/cli/commands/base_command_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/cli/commands/base_command_test.dart -------------------------------------------------------------------------------- /test/src/cli/commands/check_unnecessary_nullable_command_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/cli/commands/check_unnecessary_nullable_command_test.dart -------------------------------------------------------------------------------- /test/src/cli/commands/check_unused_code_command_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/cli/commands/check_unused_code_command_test.dart -------------------------------------------------------------------------------- /test/src/cli/commands/check_unused_files_command_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/cli/commands/check_unused_files_command_test.dart -------------------------------------------------------------------------------- /test/src/cli/commands/check_unused_l10n_command_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/cli/commands/check_unused_l10n_command_test.dart -------------------------------------------------------------------------------- /test/src/cli/utils/detect_sdk_path_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/cli/utils/detect_sdk_path_test.dart -------------------------------------------------------------------------------- /test/src/config_builder/analysis_options_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/config_builder/analysis_options_utils_test.dart -------------------------------------------------------------------------------- /test/src/config_builder/models/analysis_options_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/config_builder/models/analysis_options_test.dart -------------------------------------------------------------------------------- /test/src/helpers/anti_patterns_test_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/helpers/anti_patterns_test_helper.dart -------------------------------------------------------------------------------- /test/src/helpers/file_resolver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/helpers/file_resolver.dart -------------------------------------------------------------------------------- /test/src/helpers/rule_test_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/helpers/rule_test_helper.dart -------------------------------------------------------------------------------- /test/src/reporters/resources/github_workflow_commands_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/reporters/resources/github_workflow_commands_test.dart -------------------------------------------------------------------------------- /test/src/utils/analyzer_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/utils/analyzer_utils_test.dart -------------------------------------------------------------------------------- /test/src/utils/exclude_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/utils/exclude_utils_test.dart -------------------------------------------------------------------------------- /test/src/utils/node_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/utils/node_utils_test.dart -------------------------------------------------------------------------------- /test/src/utils/path_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/utils/path_utils_test.dart -------------------------------------------------------------------------------- /test/src/utils/string_extensions_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/utils/string_extensions_test.dart -------------------------------------------------------------------------------- /test/src/utils/yaml_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/src/utils/yaml_utils_test.dart -------------------------------------------------------------------------------- /test/stubs_builders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/test/stubs_builders.dart -------------------------------------------------------------------------------- /tool/uncovered_coverage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/tool/uncovered_coverage.dart -------------------------------------------------------------------------------- /tools/analyzer_plugin/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/analyzer_plugin/bin/plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/tools/analyzer_plugin/bin/plugin.dart -------------------------------------------------------------------------------- /tools/analyzer_plugin/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-code-checker/dart-code-metrics/HEAD/tools/analyzer_plugin/pubspec.yaml --------------------------------------------------------------------------------