Skip to content

Commit b0fdd56

Browse files
Ivan KamkinIvan Kamkin
authored andcommitted
Fix lint errors
1 parent 5c0058a commit b0fdd56

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/src/api_client.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class ApiClient {
146146
}
147147

148148
/// Invoke HTTP request
149-
/// We don't use a Map<String, String> for queryParams.
149+
/// We don't use a `Map<String, String>` for queryParams.
150150
/// If collectionFormat is 'multi' a key might appear multiple times.
151151
Future<Http.Response> invokeAPI(
152152
String path,

lib/src/model/code_location.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ class CodeLocation {
66

77
CodeLocation._internal(this._value);
88

9-
// ignore: non_constant_identifier_names
9+
// ignore: non_constant_identifier_names, public_member_api_docs
1010
static final CodeLocation Below = CodeLocation._internal("Below");
11-
// ignore: non_constant_identifier_names
11+
// ignore: non_constant_identifier_names, public_member_api_docs
1212
static final CodeLocation Above = CodeLocation._internal("Above");
13-
// ignore: non_constant_identifier_names
13+
// ignore: non_constant_identifier_names, public_member_api_docs
1414
static final CodeLocation None = CodeLocation._internal("None");
1515

1616
/// Creates a CodeLocation instance from a JSON representation.

0 commit comments

Comments
 (0)