Merge pull request #188 from krawieck/feature/own-lint-rules
This commit is contained in:
commit
c762f93d1f
|
@ -1,7 +1,6 @@
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
[![](https://github.com/krawieck/lemmur/workflows/ci/badge.svg)](https://github.com/krawieck/lemmur/actions)
|
[![](https://github.com/krawieck/lemmur/workflows/ci/badge.svg)](https://github.com/krawieck/lemmur/actions)
|
||||||
[![style: effective dart](https://img.shields.io/badge/style-effective_dart-40c4ff.svg)](https://pub.dev/packages/effective_dart)
|
|
||||||
|
|
||||||
<img width=200px height=200px src="https://raw.githubusercontent.com/krawieck/lemmur/master/assets/readme_icon.svg"/>
|
<img width=200px height=200px src="https://raw.githubusercontent.com/krawieck/lemmur/master/assets/readme_icon.svg"/>
|
||||||
|
|
||||||
|
|
|
@ -1,62 +1,120 @@
|
||||||
include: package:effective_dart/analysis_options.yaml
|
|
||||||
|
|
||||||
linter:
|
linter:
|
||||||
rules:
|
rules:
|
||||||
public_member_api_docs: false
|
- avoid_bool_literals_in_conditional_expressions
|
||||||
lines_longer_than_80_chars: false
|
- avoid_catches_without_on_clauses
|
||||||
|
- avoid_catching_errors
|
||||||
prefer_single_quotes: true
|
- avoid_classes_with_only_static_members
|
||||||
prefer_final_locals: true
|
- avoid_equals_and_hash_code_on_mutable_classes
|
||||||
prefer_expression_function_bodies: true
|
- avoid_escaping_inner_quotes
|
||||||
avoid_bool_literals_in_conditional_expressions: true
|
- avoid_function_literals_in_foreach_calls
|
||||||
exhaustive_cases: true
|
- avoid_init_to_null
|
||||||
prefer_for_elements_to_map_fromIterable: true
|
- avoid_null_checks_in_equality_operators
|
||||||
prefer_if_null_operators: true
|
- avoid_positional_boolean_parameters
|
||||||
prefer_is_not_operator: true
|
- avoid_private_typedef_functions
|
||||||
use_is_even_rather_than_modulo: true
|
- avoid_redundant_argument_values
|
||||||
unnecessary_string_escapes: true
|
- avoid_relative_lib_imports
|
||||||
use_full_hex_values_for_flutter_colors: true
|
- avoid_return_types_on_setters
|
||||||
sort_unnamed_constructors_first: true
|
- avoid_returning_null
|
||||||
use_raw_strings: true
|
- avoid_returning_null_for_void
|
||||||
unnecessary_string_interpolations: true
|
- avoid_returning_this
|
||||||
void_checks: true
|
- avoid_setters_without_getters
|
||||||
unnecessary_null_in_if_null_operators: true
|
- avoid_single_cascade_in_expression_statements
|
||||||
unnecessary_raw_strings: true
|
- avoid_type_to_string
|
||||||
unnecessary_null_aware_assignments: true
|
- avoid_types_on_closure_parameters
|
||||||
unnecessary_parenthesis: true
|
- avoid_unnecessary_containers
|
||||||
prefer_if_elements_to_conditional_expressions: true
|
- avoid_unused_constructor_parameters
|
||||||
unawaited_futures: true
|
- avoid_void_async
|
||||||
prefer_typing_uninitialized_variables: true
|
- await_only_futures
|
||||||
sized_box_for_whitespace: true
|
- camel_case_extensions
|
||||||
recursive_getters: true
|
- camel_case_types
|
||||||
prefer_int_literals: true
|
- cascade_invocations
|
||||||
prefer_spread_collections: true
|
- cast_nullable_to_non_nullable
|
||||||
prefer_null_aware_operators: true
|
- constant_identifier_names
|
||||||
prefer_final_in_for_each: true
|
- curly_braces_in_flow_control_structures
|
||||||
prefer_contains: true
|
- directives_ordering
|
||||||
prefer_constructors_over_static_methods: true
|
- empty_catches
|
||||||
prefer_conditional_assignment: true
|
- empty_constructor_bodies
|
||||||
prefer_asserts_in_initializer_lists: true
|
- exhaustive_cases
|
||||||
parameter_assignments: true
|
- file_names
|
||||||
avoid_unused_constructor_parameters: true
|
- hash_and_equals
|
||||||
empty_catches: true
|
- implementation_imports
|
||||||
cascade_invocations: true
|
- library_names
|
||||||
await_only_futures: true
|
- library_prefixes
|
||||||
avoid_void_async: true
|
- non_constant_identifier_names
|
||||||
avoid_unnecessary_containers: true
|
- null_check_on_nullable_type_parameter
|
||||||
avoid_single_cascade_in_expression_statements: true
|
- omit_local_variable_types
|
||||||
avoid_returning_null_for_void: true
|
- one_member_abstracts
|
||||||
avoid_redundant_argument_values: true
|
- package_api_docs
|
||||||
avoid_escaping_inner_quotes: true
|
- parameter_assignments
|
||||||
sort_child_properties_last: true
|
- prefer_adjacent_string_concatenation
|
||||||
prefer_const_constructors: true
|
- prefer_asserts_in_initializer_lists
|
||||||
prefer_const_declarations: true
|
- prefer_collection_literals
|
||||||
prefer_const_literals_to_create_immutables: true
|
- prefer_conditional_assignment
|
||||||
prefer_const_constructors_in_immutables: true
|
- prefer_const_constructors
|
||||||
|
- prefer_const_constructors_in_immutables
|
||||||
|
- prefer_const_declarations
|
||||||
|
- prefer_const_literals_to_create_immutables
|
||||||
|
- prefer_constructors_over_static_methods
|
||||||
|
- prefer_contains
|
||||||
|
- prefer_equal_for_default_values
|
||||||
|
- prefer_expression_function_bodies
|
||||||
|
- prefer_final_fields
|
||||||
|
- prefer_final_in_for_each
|
||||||
|
- prefer_final_locals
|
||||||
|
- prefer_for_elements_to_map_fromIterable
|
||||||
|
- prefer_function_declarations_over_variables
|
||||||
|
- prefer_generic_function_type_aliases
|
||||||
|
- prefer_if_elements_to_conditional_expressions
|
||||||
|
- prefer_if_null_operators
|
||||||
|
- prefer_initializing_formals
|
||||||
|
- prefer_int_literals
|
||||||
|
- prefer_interpolation_to_compose_strings
|
||||||
|
- prefer_is_empty
|
||||||
|
- prefer_is_not_empty
|
||||||
|
- prefer_is_not_operator
|
||||||
|
- prefer_iterable_whereType
|
||||||
|
- prefer_mixin
|
||||||
|
- prefer_null_aware_operators
|
||||||
|
- prefer_relative_imports
|
||||||
|
- prefer_single_quotes
|
||||||
|
- prefer_spread_collections
|
||||||
|
- prefer_typing_uninitialized_variables
|
||||||
|
- recursive_getters
|
||||||
|
- sized_box_for_whitespace
|
||||||
|
- slash_for_doc_comments
|
||||||
|
- sort_child_properties_last
|
||||||
|
- sort_unnamed_constructors_first
|
||||||
|
- tighten_type_of_initializing_formals
|
||||||
|
- type_annotate_public_apis
|
||||||
|
- type_init_formals
|
||||||
|
- unawaited_futures
|
||||||
|
- unnecessary_brace_in_string_interps
|
||||||
|
- unnecessary_const
|
||||||
|
- unnecessary_getters_setters
|
||||||
|
- unnecessary_lambdas
|
||||||
|
- unnecessary_new
|
||||||
|
- unnecessary_null_aware_assignments
|
||||||
|
- unnecessary_null_checks
|
||||||
|
- unnecessary_null_in_if_null_operators
|
||||||
|
- unnecessary_parenthesis
|
||||||
|
- unnecessary_raw_strings
|
||||||
|
- unnecessary_string_escapes
|
||||||
|
- unnecessary_string_interpolations
|
||||||
|
- unnecessary_this
|
||||||
|
- use_full_hex_values_for_flutter_colors
|
||||||
|
- use_is_even_rather_than_modulo
|
||||||
|
- use_raw_strings
|
||||||
|
- use_rethrow_when_possible
|
||||||
|
- use_setters_to_change_properties
|
||||||
|
- use_to_and_as_if_applicable
|
||||||
|
- void_checks
|
||||||
|
|
||||||
analyzer:
|
analyzer:
|
||||||
exclude:
|
exclude:
|
||||||
- "**/*.g.dart"
|
- "**/*.g.dart"
|
||||||
- "lib/gen/assets.gen.dart"
|
- "lib/gen/assets.gen.dart"
|
||||||
strong-mode:
|
strong-mode:
|
||||||
|
# TODO: remove after migrating to null safety, this is already turned off by default
|
||||||
implicit-casts: false
|
implicit-casts: false
|
||||||
|
# TODO: consider disabling
|
||||||
|
# implicit-dynamic: false
|
||||||
|
|
|
@ -183,13 +183,6 @@ packages:
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.3.12"
|
version: "1.3.12"
|
||||||
effective_dart:
|
|
||||||
dependency: "direct dev"
|
|
||||||
description:
|
|
||||||
name: effective_dart
|
|
||||||
url: "https://pub.dartlang.org"
|
|
||||||
source: hosted
|
|
||||||
version: "1.3.0"
|
|
||||||
fake_async:
|
fake_async:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -61,7 +61,6 @@ dependencies:
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
effective_dart: ^1.0.0
|
|
||||||
flutter_launcher_icons: ^0.8.1
|
flutter_launcher_icons: ^0.8.1
|
||||||
json_serializable: ^3.5.1
|
json_serializable: ^3.5.1
|
||||||
build_runner: ^1.11.1
|
build_runner: ^1.11.1
|
||||||
|
|
Loading…
Reference in New Issue