Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #359 from comigor/improve-score
Browse files Browse the repository at this point in the history
Format some files to improve pana score
  • Loading branch information
comigor authored Oct 26, 2021
2 parents c36708f + 6bb6b8b commit 0520162
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 7.2.5-beta
- Format some files to improve `pana` score

## 7.2.4-beta

- package update
Expand Down
2 changes: 1 addition & 1 deletion lib/generator/data/enum_definition.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class EnumDefinition extends Definition with DataPrinter {
EnumDefinition({
required this.name,
required this.values,
}) : assert(hasValue(name) && hasValue(values)),
}) : assert(hasValue(name) && hasValue(values)),
super(name: name);

@override
Expand Down
2 changes: 1 addition & 1 deletion lib/generator/data/fragment_class_definition.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class FragmentClassDefinition extends Definition with DataPrinter {
FragmentClassDefinition({
required this.name,
required this.properties,
}) : assert(hasValue(name) && hasValue(properties)),
}) : assert(hasValue(name) && hasValue(properties)),
super(name: name);

@override
Expand Down
2 changes: 1 addition & 1 deletion lib/generator/data/query_input.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class QueryInput extends Definition with DataPrinter {
required this.type,
this.annotations = const [],
required this.name,
}) : assert(hasValue(type) && hasValue(name)),
}) : assert(hasValue(type) && hasValue(name)),
super(name: name);

@override
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: artemis
version: 7.2.4-beta
version: 7.2.5-beta

description: Build dart types from GraphQL schemas and queries (using Introspection Query).
homepage: https://github.com/comigor/artemis
Expand Down

0 comments on commit 0520162

Please sign in to comment.