Fix SwiftFormat and SwiftLint issues

- Fix indentation in AppSidebarNavigation, VideoCell
- Replace && with comma in PlayerModel condition
- Add SwiftLint suppression for necessary tvOS 17.0 availability check
- Update SwiftLint config to use renamed rules and disable false positives
This commit is contained in:
Arkadiusz Fal
2025-11-20 17:05:22 +01:00
parent 9a8ccc366c
commit 36738572da
5 changed files with 14 additions and 4 deletions

View File

@@ -8,6 +8,15 @@ disabled_rules:
- multiline_arguments
- implicit_return
- closure_end_indentation
- discarded_notification_center_observer # Observer intentionally lives for app lifetime
# Disable deprecated rules in favor of their renamed versions
- operator_whitespace # renamed to function_name_whitespace
- redundant_optional_initialization # renamed to implicit_optional_initialization
opt_in_rules:
- function_name_whitespace
- implicit_optional_initialization
excluded:
- Vendor
- Tests Apple TV