Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Sep 25, 2024
1 parent 3a896ea commit 2e3a9d7
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion lib/dev_utils.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Development helpers to generate warning in code
library tekartik_dev_utils;
library;

import 'package:tekartik_common_utils/env_utils.dart';
export 'src/debug.dart' show debugEnvMap;
Expand Down
2 changes: 1 addition & 1 deletion lib/hash_code_utils.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library hash_code_utils;
library;

/// Safe hashCode for null object
int safeHashCode(Object? object) => object == null ? 0 : object.hashCode;
2 changes: 1 addition & 1 deletion lib/log_utils.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library tekartik_log_utils;
library;

import 'package:logging/logging.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/map_utils.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library tekartik_utils.map_utils;
library;

import 'list_utils.dart';
export 'src/map_utils.dart' show TekartikStringObjectMapExtension;
Expand Down
2 changes: 1 addition & 1 deletion lib/string_enum.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library tekartik_string_enum;
library;

/// Base class for string enum
abstract class StringEnum {
Expand Down
2 changes: 1 addition & 1 deletion lib/version_utils.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library tekartik_version_utils;
library;

import 'package:pub_semver/pub_semver.dart';

Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
synchronized: '>=3.1.0'
meta: '>=1.3.0'
lints: '>=2.1.1'
cv: '>=0.1.0'
cv: '>=1.0.0'
tekartik_lints:
git:
url: https://github.com/tekartik/common.dart
Expand All @@ -31,5 +31,5 @@ dev_dependencies:
web: '>=0.5.1'

dependency_overrides:
# cv:
# path: ../../../github.com/tekartik/cv.dart/packages/cv
lints: '>=5.1.0'
web: '>=1.1.0'
2 changes: 1 addition & 1 deletion test/dev_utils_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library dev_utils_test;
library;

import 'package:tekartik_common_utils/dev_utils.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion test/hash_code_utils_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library hash_code_utils_tests;
library;

//import 'package:unittest/vm_config.dart';
import 'package:tekartik_common_utils/hash_code_utils.dart';
Expand Down
2 changes: 1 addition & 1 deletion test/log_utils_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library log_utils_test;
library;

//import 'package:unittest/vm_config.dart';
import 'package:logging/logging.dart' as log;
Expand Down
2 changes: 1 addition & 1 deletion test/map_utils_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library map_utils_tests;
library;

import 'package:tekartik_common_utils/map_utils.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion test/version_utils_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library version_utils_test;
library;

//import 'package:unittest/vm_config.dart';
import 'package:tekartik_common_utils/version_utils.dart';
Expand Down

0 comments on commit 2e3a9d7

Please sign in to comment.