1234567891011121314151617181920212223242526272829303132333435 |
- whitelist_rules:
- - closing_brace
- - colon
- - comma
- - control_statement
- - custom_rules
- - empty_count
- - leading_whitespace
- - legacy_cggeometry_functions
- - legacy_constant
- - legacy_constructor
- - mark
- - opening_brace
- - operator_whitespace
- - private_unit_test
- - redundant_nil_coalescing
- - redundant_string_enum_value
- - return_arrow_whitespace
- - syntactic_sugar
- - trailing_semicolon
- - void_return
- excluded:
- - Pods
- - .bundle
- - fastlane
- colon:
- apply_to_dictionaries: false
- custom_rules:
- equal_sign_whitespace:
- message: "Expected only one space before and after ="
- regex: "(([ ]{2,}=)|(=[ ]{2,}))"
|