Files
ghostty/macos/.swiftlint.yml
Jon Parise dd29617cd3 macos: swiftlint 'multiple_closures_with_trailing_closure' rule
Also, re-enable the 'force_cast' rule, which was addressed earlier.
2026-02-21 10:17:15 -08:00

37 lines
532 B
YAML

# SwiftLint <https://realm.github.io/SwiftLint/>
#
check_for_updates: false
excluded:
- build
disabled_rules:
- cyclomatic_complexity
- file_length
- function_body_length
- line_length
- nesting
- no_fallthrough_only
- todo
- trailing_comma
- trailing_newline
- type_body_length
identifier_name:
min_length: 1
allowed_symbols: ["_"]
excluded:
- Core.*
type_name:
min_length: 2
allowed_symbols: ["_"]
excluded:
- iOS_.*
function_parameter_count:
warning: 6
large_tuple:
warning: 3