Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Sep 26, 2024
1 parent 56fc38e commit 5638285
Show file tree
Hide file tree
Showing 103 changed files with 104 additions and 104 deletions.
4 changes: 2 additions & 2 deletions sembast/lib/blob.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// Sembast timestamp definition
library sembast_blob;
/// Sembast blob definition
library;

export 'src/blob_impl.dart' show Blob;
2 changes: 1 addition & 1 deletion sembast/lib/sembast.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast;
library;

/// The API
export 'package:sembast/src/api/sembast.dart';
2 changes: 1 addition & 1 deletion sembast/lib/sembast_io.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.io;
library;

import 'package:sembast/sembast.dart';
import 'package:sembast/src/api/v2/sembast_io.dart' as database_io;
Expand Down
2 changes: 1 addition & 1 deletion sembast/lib/sembast_memory.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.memory;
library;

export 'package:sembast/src/api/v2/sembast_memory.dart'
show
Expand Down
2 changes: 1 addition & 1 deletion sembast/lib/src/file_system.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.file_system;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast/lib/src/io/file_system_io.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.io_file_system;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast/lib/src/jdb/jdb_factory_memory.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.jdb_factory_memory;
library;

import 'dart:async';
import 'dart:math';
Expand Down
2 changes: 1 addition & 1 deletion sembast/lib/src/memory/file_system_memory.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.memory_file_system;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast/lib/src/memory/file_system_memory_impl.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.memory_file_system_impl;
library;

import 'dart:async';
import 'dart:typed_data';
Expand Down
2 changes: 1 addition & 1 deletion sembast/lib/src/sembast_fs.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.fs;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast/lib/src/sembast_jdb.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.sembast_jdb;
library;

import 'dart:async';

Expand Down
2 changes: 1 addition & 1 deletion sembast/lib/timestamp.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// Sembast timestamp definition
library sembast_timestamp;
library;

export 'src/timestamp_impl.dart' show Timestamp;
2 changes: 1 addition & 1 deletion sembast/lib/utils/import_export_io.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.utils.sembast_import_export_io;
library;

import 'dart:io';

Expand Down
2 changes: 1 addition & 1 deletion sembast/lib/utils/key_utils.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
library sembast.utils.key_utils;
library;

export 'package:sembast/src/key_utils.dart' show generateStringKey;
2 changes: 1 addition & 1 deletion sembast/lib/utils/sembast_import_export.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.utils.sembast_import_export;
library;

import 'dart:convert';

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

import 'package:sembast/src/import_common.dart';
import 'package:sembast/src/utils.dart' as utils;
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/all_factory_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.test_runner.all_test;
library;

import 'package:path/path.dart';

Expand Down
2 changes: 1 addition & 1 deletion sembast/test/all_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test_runner;
library;

import 'database_format_test.dart' as database_format_test;
import 'database_impl_format_test.dart' as database_impl_format_test;
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/all_test_io.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.all_test_io;
library;

import 'database_codec_test.dart' as database_codec_test;
import 'test_common.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/database_codec_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.test.database_codec_test;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/database_format_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.database_format_test;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/database_impl_format_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.compat.database_impl_format_test;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/database_impl_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.database_test;
library;

import 'package:sembast/src/api/protected/database.dart';

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

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/database_invalid_codec_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.test.database_codec_test;
library;

import 'dart:async';

Expand Down
2 changes: 1 addition & 1 deletion sembast/test/database_perf_io_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print

@TestOn('vm')
library sembast.database_perf_io_test;
library;

import 'dart:async';
import 'dart:io';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/database_perf_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.database_perf_test;
library;

import 'dart:async';

Expand Down
2 changes: 1 addition & 1 deletion sembast/test/database_perf_test_io_slow.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@TestOn('vm')
@Timeout(Duration(seconds: 120))
library sembast.database_perf_test_slow;
library;

// basically same as the io runner but with extra output
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/database_perf_test_slow.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@Timeout(Duration(seconds: 120))
library sembast.database_perf_test_slow;
library;

// basically same as the io runner but with extra output
import 'database_perf_test.dart' as database_perf_test;
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/exp_io_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.test.exp_io_est;
library;

import 'dart:async';

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

import 'package:sembast/sembast.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/io_factory_test_.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.test.io_factory_test_;
library;

import 'all_test.dart';
import 'io_test_common.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/io_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.test.io_test;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/io_test_common.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.io_test_common;
library;

import 'package:sembast/src/api/v2/sembast_io.dart';
import 'package:sembast/src/io/file_system_io.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/io_with_root_factory_test_.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.test.io_factory_test_;
library;

import 'package:path/path.dart';

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

import 'package:sembast/blob.dart';
import 'package:sembast/src/json_encodable_codec.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/memory_factory_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.memory_factory_test;
library;

// basically same as the io runner but with extra output
import 'package:sembast/sembast_memory.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/memory_factory_test_.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.memory_factory_test_;
library;

import 'package:sembast/src/memory/database_factory_memory.dart'
show DatabaseFactoryMemory;
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/memory_fs_factory_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.memory_factory_test;
library;

// basically same as the io runner but with extra output
import 'package:sembast/src/memory/database_factory_memory.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/memory_fs_factory_test_.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.memory_fs_factory_test_;
library;

import 'package:sembast/src/api/v2/sembast_memory.dart';
import 'package:sembast/src/memory/database_factory_memory.dart'
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/memory_jdb_factory_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.memory_factory_test;
library;

// basically same as the io runner but with extra output
import 'package:sembast/sembast_memory.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/record_impl_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.record_test;
library;

// basically same as the io runner but with extra output
import 'package:sembast/src/record_impl.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/sembast_import_export_io_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.sembast_import_export_io_test;
library;

// basically same as the io runner but with extra output

Expand Down
2 changes: 1 addition & 1 deletion sembast/test/sembast_import_export_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.value_utils_test;
library;

// basically same as the io runner but with extra output

Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src/log_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.src.log_test;
library;

// basically same as the io runner but with extra output
import 'package:sembast/src/api/log_level.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src/test_defs.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.src.test_defs;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_file_system_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.io_file_system_test;
library;

// basically same as the io runner but with extra output
//import 'package:tekartik_test/test_config.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_filter_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.src_filter_test;
library;

// basically same as the io runner but with extra output
//import 'package:tekartik_test/test_config.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_finder_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.database_test;
library;

import 'package:sembast/src/finder_impl.dart';
import 'package:sembast/src/record_impl.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_fs_storage_io_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.test.src_fs_storage_io_test;
library;

import 'dart:convert';
import 'dart:io' as io;
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_io_file_system_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.io_file_system_test;
library;

// basically same as the io runner but with extra output
import 'dart:io' as io;
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_io_with_root_file_system_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library sembast.io_file_system_test;
library;

// basically same as the io runner but with extra output
import 'dart:io' as io;
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_memory_file_system_impl_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.memory_file_system_impl_test;
library;

// basically same as the io runner but with extra output
//import 'package:tekartik_test/test_config.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_ref_common_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.src_ref_common_test;
library;

import 'test_common.dart';

Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_sort_order_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.src_filter_test;
library;

// basically same as the io runner but with extra output
//import 'package:tekartik_test/test_config.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_store_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.src_store_test;
library;

import 'package:sembast/src/api/protected/database.dart';
import 'package:sembast/src/store_ref_impl.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_stream_utils_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.src_stream_utils_test;
library;

import 'package:sembast/src/stream_utils.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/src_utils_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.utils_test;
library;

// basically same as the io runner but with extra output
import 'package:sembast/sembast_memory.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/store_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test.src_store_test;
library;

import 'package:sembast/src/sembast_impl.dart';

Expand Down
2 changes: 1 addition & 1 deletion sembast/test/transaction_impl_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.transaction_test;
library;

// basically same as the io runner but with extra output
import 'dart:async';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/type_adapter_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.type_adapter_test;
library;

import 'package:sembast/blob.dart';
import 'package:sembast/src/timestamp_impl.dart';
Expand Down
2 changes: 1 addition & 1 deletion sembast/test/value_utils_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.value_utils_test;
library;

// basically same as the io runner but with extra output
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion sembast_test/lib/all_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library sembast.test_runner;
library;

import 'changes_listener_persistent_test.dart'
as changes_listener_persistent_test;
Expand Down
Loading

0 comments on commit 5638285

Please sign in to comment.