refactor(linter): Перейти на friflex_linter, обновить правила

This commit is contained in:
PetrovY
2025-05-28 16:38:56 +03:00
parent 31507ae230
commit c6d4700892
61 changed files with 691 additions and 366 deletions

View File

@@ -14,14 +14,12 @@ import 'package:go_router/go_router.dart';
/// Класс приложения
class App extends StatefulWidget {
const App({
super.key,
required this.router,
required this.initDependencies,
});
const App({required this.router, required this.initDependencies, super.key});
/// Роутер приложения
final GoRouter router;
/// Функция для инициализации зависимостей
/// Функция для инициализации зависимостей
final Future<DiContainer> Function() initDependencies;
@override