diff options
| author | Fuwn <[email protected]> | 2025-04-23 02:26:25 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-04-23 02:26:25 -0700 |
| commit | b1d1bc4b0c5e917ba0dd5c3b73ebe3048a755c65 (patch) | |
| tree | 162b2fa4e0c97aa86947df5589a07b1b8a2af371 | |
| parent | build: Swap Make for just (diff) | |
| download | holobar-b1d1bc4b0c5e917ba0dd5c3b73ebe3048a755c65.tar.xz holobar-b1d1bc4b0c5e917ba0dd5c3b73ebe3048a755c65.zip | |
chore: Add SwiftLint rules
| -rw-r--r-- | .swiftlint.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.swiftlint.yml b/.swiftlint.yml new file mode 100644 index 0000000..bb785b7 --- /dev/null +++ b/.swiftlint.yml @@ -0,0 +1,26 @@ +strict: true + +analyzer_rules: + - all + +opt_in_rules: + - all + +disabled_rules: + - accessibility_label_for_image + - closure_body_length + - conditional_returns_on_newline + - contrasted_opening_brace + - explicit_acl + - explicit_top_level_acl + - explicit_type_interface + - force_unwrapping + - function_body_length + - indentation_width + - multiple_closures_with_trailing_closure + - no_magic_numbers + - opening_brace + - required_deinit + - trailing_comma + - type_contents_order + |