-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
helpQuestions or user problems that require more explanation rather than code changes.Questions or user problems that require more explanation rather than code changes.
Description
New Issue Checklist
- Updated SwiftLint to the latest version
- I searched for existing GitHub issues
Describe the bug
lines like @Persisted(primaryKey: true) var id: Int
are marked with Attributes Violation: Attributes should be on their own lines in functions and types, but on the same line as variables and imports (attributes)
, but lines like @Persisted var reelId: Int
are (correctly) recognised as fine
Environment
- SwiftLint version 0.51.0
- Installation method used: Homebrew
- Paste your configuration file:
disabled_rules: # rule identifiers to exclude from running
- conditional_returns_on_newline # lots of warnings
- file_length
- force_cast
- force_try
- identifier_name
- line_length
- todo
- trailing_whitespace
opt_in_rules:
- anyobject_protocol
- array_init
- attributes
- closure_end_indentation
- closure_spacing
- collection_alignment
- comma_inheritance
- computed_accessors_order
- conditional_returns_on_newline
- contains_over_filter_count
- contains_over_filter_is_empty
- contains_over_first_not_nil
- contains_over_range_nil_comparison
- control_statement
- convenience_type
- deployment_target
- discarded_notification_center_observer
- discouraged_assert
- discouraged_direct_init
- discouraged_none_name
- discouraged_object_literal
- empty_collection_literal
- empty_count
- empty_string
- empty_xctest_method
- enum_case_associated_values_count
- explicit_init
- fallthrough
- fatal_error_message
- file_header
- file_name_no_space
- first_where
- flatmap_over_map_reduce
- identical_operands
- implicit_return
- joined_default_parameter
- last_where
- legacy_multiple
- legacy_random
- let_var_whitespace
- lower_acl_than_parent
- modifier_order
- nimble_operator
- operator_usage_whitespace
- optional_enum_case_matching
- prefer_self_in_static_references
- prefer_self_type_over_type_of_self
- prefer_zero_over_explicit_init
- private_action
- private_outlet
- private_subject
- prohibited_super_call
- raw_value_for_camel_cased_codable_enum
- redundant_nil_coalescing
- redundant_type_annotation
- required_enum_case
- return_value_from_void_function
- self_binding
- single_test_class
- sorted_first_last
- sorted_imports
- static_operator
- switch_case_on_newline
- toggle_bool
- unavailable_condition
- unneeded_parentheses_in_closure_argument
- untyped_error_in_catch
- vertical_parameter_alignment
- vertical_parameter_alignment_on_call
- vertical_whitespace_closing_braces
- weak_delegate
- yoda_condition
- shorthand_optional_binding
analyzer_rules:
- capture_variable
- typesafe_array_init
- unused_declaration
- unused_import
identifier_name:
excluded:
- id
cyclomatic_complexity:
warning: 13
# parameterized rules are first parameterized as a warning level, then error level.
type_body_length:
- 300 # warning
- 400 # error
nesting:
type_level: 3
- Are you using nested configurations?
If so, paste their relative paths and respective contents. - Which Xcode version are you using: Xcode 14.3 Build version 14E222b
// This triggers a violation:
@Persisted(primaryKey: true) var id: Int
Metadata
Metadata
Assignees
Labels
helpQuestions or user problems that require more explanation rather than code changes.Questions or user problems that require more explanation rather than code changes.