Skip to content

Commit

Permalink
v0.9.15 (477)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbaigner committed Dec 31, 2021
0 parents commit dc539a6
Show file tree
Hide file tree
Showing 2,038 changed files with 364,134 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.DS_Store
*~
tmp/
xcuserdata/
.idea/
swiftpm/
449 changes: 449 additions & 0 deletions CHANGELOG.en.md

Large diffs are not rendered by default.

445 changes: 445 additions & 0 deletions CHANGELOG.fr.md

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions CoreDataStack/.swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
disabled_rules:
- trailing_whitespace
- vertical_whitespace
- line_length
- identifier_name
- redundant_optional_initialization
- private_over_fileprivate
- multiple_closures_with_trailing_closure
- class_delegate_protocol
- type_name
- trailing_comma
- cyclomatic_complexity
- file_length
- function_body_length
- large_tuple
- type_body_length
- empty_parentheses_with_trailing_closure
- comma
- unused_closure_parameter
- control_statement
- function_parameter_count
- nesting
- redundant_string_enum_value
- unused_enumerated
- is_disjoint
- for_where
- reduce_boolean
- force_cast
- force_try
- weak_delegate
- generic_type_name
- unused_optional_binding
- redundant_objc_attribute
- nsobject_prefer_isequal
- unused_setter_value
custom_rules:
commented_code:
regex: '(?<!:|\/)\/\/\h*[a-z.](?!wiftlint)'
message: "Comment starting with lowercase letter - did you forget to delete old code?"
multiline_commented_code:
regex: '^\s*[a-z]'
match_kinds: comment
message: "Comment starting with lowercase letter - did you forget to delete old code?"
Loading

0 comments on commit dc539a6

Please sign in to comment.