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

@@ -25,9 +25,7 @@ final class AppHttpClient implements IHttpClient {
..connectTimeout = const Duration(seconds: 5)
..sendTimeout = const Duration(seconds: 7)
..receiveTimeout = const Duration(seconds: 10)
..headers = {
'Content-Type': 'application/json',
};
..headers = {'Content-Type': 'application/json'};
debugService.log('HTTP client created');
_httpClient.interceptors.add(debugService.dioLogger);
}