mirror of https://github.com/AMT-Cheif/drift.git
Fix comment_references lint
This commit is contained in:
parent
75463f8819
commit
82fd5b4a44
|
@ -15,9 +15,9 @@ part 'table.dart';
|
|||
/// }
|
||||
/// ```
|
||||
/// Neither [Table.integer], [BuildIntColumn.autoIncrement] or
|
||||
/// [BuildColumn.call] will be called at runtime. Instead, the generator will
|
||||
/// take a look at the written Dart code to recognize that `id` is a column of
|
||||
/// type int that has auto increment (and is thus the primary key). It will
|
||||
/// [BuildGeneralColumn.call] will be called at runtime. Instead, the generator
|
||||
/// will take a look at the written Dart code to recognize that `id` is a column
|
||||
/// of type int that has auto increment (and is thus the primary key). It will
|
||||
/// generate a subclass of `MyTable` which looks like this:
|
||||
/// ```dart
|
||||
/// class _$MyTable extends MyTable {
|
||||
|
|
|
@ -6,7 +6,7 @@ part of 'sql_types.dart';
|
|||
/// Dart currently supports [DateTime], [double], [int], [Uint8List], [bool]
|
||||
/// and [String] for [S].
|
||||
///
|
||||
/// Also see [BuildColumn.map] for details.
|
||||
/// Also see [BuildGeneralColumn.map] for details.
|
||||
abstract class TypeConverter<D, S> {
|
||||
/// Empty constant constructor so that subclasses can have a constant
|
||||
/// constructor.
|
||||
|
|
Loading…
Reference in New Issue