mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
e9fcf2b254
Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com> # Manual Merge Cleanup: # .actrc # .github/workflows/pr-checks.yml # .github/workflows/release.yml # Brewfile # script/test # script/version_bump # Conflicts: # .github/workflows/build-test.yml # .gitignore # .swiftlint.yml # Brewfile.lock.json # Package.resolved # Sources/mas/Package.swift # Tests/masTests/.swiftlint.yml # script/bootstrap # script/build # script/format # script/lint # script/uninstall # script/version
44 lines
893 B
YAML
44 lines
893 B
YAML
#
|
|
# .swiftlint.yml
|
|
# mas
|
|
#
|
|
# https://github.com/realm/SwiftLint#configuration
|
|
#
|
|
---
|
|
opt_in_rules:
|
|
- all
|
|
disabled_rules:
|
|
- balanced_xctest_lifecycle
|
|
- closure_body_length
|
|
- contrasted_opening_brace
|
|
- explicit_acl
|
|
- explicit_enum_raw_value
|
|
- explicit_top_level_acl
|
|
- explicit_type_interface
|
|
- file_header
|
|
- file_name
|
|
- final_test_case
|
|
- force_unwrapping
|
|
- function_body_length
|
|
- inert_defer
|
|
- legacy_objc_type
|
|
- no_grouping_extension
|
|
- number_separator
|
|
- one_declaration_per_file
|
|
- prefer_nimble
|
|
- prefixed_toplevel_constant
|
|
- quick_discouraged_call
|
|
- quick_discouraged_pending_test
|
|
- required_deinit
|
|
- sorted_enum_cases
|
|
- trailing_comma
|
|
- unused_capture_list
|
|
- vertical_whitespace_between_cases
|
|
file_types_order:
|
|
order: [
|
|
[main_type],
|
|
[supporting_type],
|
|
[extension],
|
|
[preview_provider],
|
|
[library_content_provider]
|
|
]
|