fix: add ignore_for_file to data connect Repos and modify CI to avoid analyzing deleted files
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
library core;
|
||||
library;
|
||||
|
||||
export 'src/domain/arguments/usecase_argument.dart';
|
||||
export 'src/domain/usecases/usecase.dart';
|
||||
|
||||
@@ -22,16 +22,16 @@ import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
/// }
|
||||
/// ```
|
||||
class CoreBlocObserver extends BlocObserver {
|
||||
/// Whether to log state changes (can be verbose in production)
|
||||
final bool logStateChanges;
|
||||
|
||||
/// Whether to log events
|
||||
final bool logEvents;
|
||||
|
||||
CoreBlocObserver({
|
||||
this.logStateChanges = false,
|
||||
this.logEvents = true,
|
||||
});
|
||||
/// Whether to log state changes (can be verbose in production)
|
||||
final bool logStateChanges;
|
||||
|
||||
/// Whether to log events
|
||||
final bool logEvents;
|
||||
|
||||
@override
|
||||
void onCreate(BlocBase bloc) {
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
/// final homePath = ClientPaths.home;
|
||||
/// final shiftsPath = StaffPaths.shifts;
|
||||
/// ```
|
||||
library;
|
||||
|
||||
export 'client/route_paths.dart';
|
||||
export 'client/navigator.dart';
|
||||
|
||||
Reference in New Issue
Block a user