Skip to content

Commit

Permalink
Dart 3.4 requirement and linter fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
renggli committed May 25, 2024
1 parent 1719a2d commit d0e65cc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ linter:
- comment_references
- directives_ordering
- invalid_case_patterns
- missing_code_block_language_in_doc_comment
- no_self_assignments
- no_wildcard_variable_uses
- omit_local_variable_types
Expand All @@ -33,6 +34,7 @@ linter:
- unnecessary_await_in_return
- unnecessary_breaks
- unnecessary_lambdas
- unnecessary_library_name
- unnecessary_null_aware_operator_on_extension_on_nullable
- unnecessary_null_checks
- unnecessary_parenthesis
Expand Down
2 changes: 1 addition & 1 deletion lib/statemachine.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Generic state machine framework.
library statemachine;
library;

export 'src/callback.dart';
export 'src/events.dart';
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ topics:
- streams

environment:
sdk: ^3.3.0
sdk: ^3.4.0
dependencies:
meta: ^1.9.0
dev_dependencies:
build_runner: ^2.4.0
build_web_compilers: ^4.0.0
lints: ^3.0.0
lints: ^4.0.0
test: ^1.24.0
web: ^0.5.0

0 comments on commit d0e65cc

Please sign in to comment.