-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Denis Portnov
committed
Aug 30, 2024
1 parent
76e4ef1
commit c4574ec
Showing
11 changed files
with
50 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018-2019 Denis Portnov <[email protected] | ||
Copyright (c) 2024 Denis Portnov | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,13 @@ | ||
include: package:pedantic/analysis_options.yaml | ||
include: package:lints/recommended.yaml | ||
|
||
analyzer: | ||
strong-mode: | ||
implicit-casts: false | ||
implicit-dynamic: false | ||
errors: | ||
dead_code: error | ||
missing_required_param: error | ||
missing_return: error | ||
omit_local_variable_types: info | ||
prefer_single_quotes: info | ||
todo: ignore | ||
unused_element: error | ||
unused_import: error | ||
unused_local_variable: error | ||
language: | ||
strict-casts: true | ||
strict-inference: true | ||
strict-raw-types: true | ||
|
||
linter: | ||
rules: | ||
- always_declare_return_types | ||
- always_require_non_null_named_parameters | ||
- annotate_overrides | ||
- avoid_empty_else | ||
- avoid_init_to_null | ||
- avoid_null_checks_in_equality_operators | ||
- avoid_relative_lib_imports | ||
- avoid_return_types_on_setters | ||
- avoid_shadowing_type_parameters | ||
- avoid_types_as_parameter_names | ||
- await_only_futures | ||
- camel_case_extensions | ||
- camel_case_types | ||
- avoid_unused_constructor_parameters | ||
- cancel_subscriptions | ||
- comment_references | ||
- control_flow_in_finally | ||
- curly_braces_in_flow_control_structures | ||
- directives_ordering | ||
- empty_catches | ||
- empty_constructor_bodies | ||
- empty_statements | ||
- hash_and_equals | ||
- implementation_imports | ||
- iterable_contains_unrelated_type | ||
- library_names | ||
- library_prefixes | ||
- list_remove_unrelated_type | ||
- no_duplicate_case_values | ||
- non_constant_identifier_names | ||
- null_closures | ||
- overridden_fields | ||
- package_api_docs | ||
- prefer_adjacent_string_concatenation | ||
- prefer_collection_literals | ||
- prefer_conditional_assignment | ||
- prefer_contains | ||
- prefer_equal_for_default_values | ||
- prefer_final_fields | ||
- prefer_for_elements_to_map_fromIterable | ||
- prefer_generic_function_type_aliases | ||
- prefer_if_null_operators | ||
- prefer_is_empty | ||
- prefer_is_not_empty | ||
- prefer_iterable_whereType | ||
- prefer_spread_collections | ||
- public_member_api_docs | ||
- recursive_getters | ||
- slash_for_doc_comments | ||
- test_types_in_equals | ||
- throw_in_finally | ||
- type_init_formals | ||
- unawaited_futures | ||
- unnecessary_const | ||
- unnecessary_new | ||
- unnecessary_null_in_if_null_operators | ||
- unnecessary_this | ||
- unrelated_type_equality_checks | ||
- use_function_type_syntax_for_parameters | ||
- use_rethrow_when_possible | ||
- valid_regexps | ||
- package_api_docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
name: uuid_type | ||
description: UUID type, parser and generators. Can generate v1, v4, and v5 UUIDs | ||
version: 2.0.0 | ||
version: 2.1.0 | ||
uploader: Denis Portnov <[email protected]> | ||
homepage: https://github.com/denixport/dart-uuid | ||
repository: https://github.com/denixport/dart-uuid | ||
environment: | ||
sdk: '>=2.12.0 <3.0.0' | ||
sdk: ">=3.3.0 <4.0.0" | ||
dependencies: | ||
crypto: ^3.0.0 | ||
dev_dependencies: | ||
test: ^1.16.8 | ||
pedantic: ^1.11.0 | ||
test: ^1.25.8 | ||
lints: ^4.0.0 | ||
topics: | ||
- uuid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters