Skip to content

Commit 9f4ad16

Browse files
authored
Merge pull request #12 from aspicas/fix/show-example-on-prod
Fix/show example on prod
2 parents 7c57e25 + aaaedf6 commit 9f4ad16

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include: package:flutter_lints/flutter.yaml
1+
include: package:lints/recommended.yaml
22

33
# Additional information about this file can be found at
44
# https://dart.dev/guides/language/analysis-options

lib/src/utils/json_handler.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class JsonHandler {
229229
return result;
230230
}
231231

232-
/// Validates if a value can be safely cast to Map<String, dynamic>
232+
/// Validates if a value can be safely cast to Map&lt;String, dynamic&gt;
233233
static bool isValidJsonMap(dynamic value) {
234234
return value is Map<String, dynamic>;
235235
}

pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ name: flutter_policy_engine
22
description: "A lightweight, extensible policy engine for Flutter enabling Attribute-Based Access Control (ABAC) and Role-Based Access Control (RBAC) with declarative rule definitions."
33
version: 1.0.0
44
# homepage: https://github.com/davidgarcia93/flutter_policy_engine
5-
repository: https://github.com/davidgarcia93/flutter_policy_engine
6-
issue_tracker: https://github.com/davidgarcia93/flutter_policy_engine/issues
7-
documentation: https://github.com/davidgarcia93/flutter_policy_engine#readme
5+
repository: https://github.com/aspicas/flutter_policy_engine
6+
issue_tracker: https://github.com/aspicas/flutter_policy_engine/issues
7+
documentation: https://github.com/aspicas/flutter_policy_engine#readme
88
topics:
99
- flutter
1010
- policy
1111
- engine
1212
- authorization
13-
publish_to: "https://pub.dev"
1413
# funding:
1514
# - https://github.com/sponsors/davidgarcia93
1615
# maintainers:
@@ -30,6 +29,7 @@ dev_dependencies:
3029
flutter_test:
3130
sdk: flutter
3231
flutter_lints: ^4.0.0
32+
lints: ^4.0.0
3333

3434
# For information on the generic Dart part of this file, see the
3535
# following page: https://dart.dev/tools/pub/pubspec

0 commit comments

Comments
 (0)