fix: add ignore_for_file to data connect Repos and modify CI to avoid analyzing deleted files

This commit is contained in:
2026-02-20 19:51:44 +05:30
parent 24835f127e
commit 474be43448
259 changed files with 1810 additions and 1714 deletions

View File

@@ -1,4 +1,4 @@
library core;
library;
export 'src/domain/arguments/usecase_argument.dart';
export 'src/domain/usecases/usecase.dart';

View File

@@ -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) {

View File

@@ -41,6 +41,7 @@
/// final homePath = ClientPaths.home;
/// final shiftsPath = StaffPaths.shifts;
/// ```
library;
export 'client/route_paths.dart';
export 'client/navigator.dart';