-
Notifications
You must be signed in to change notification settings - Fork 38
Conversation
Hi, Thank you for the contribution! A quick tip for those failing tests: you can run them locally using either the xcode project (use the CMD + U shortcut), or in terminal using |
Thanks for the tip 👍🏻 |
CHANGELOG.md
Outdated
@@ -6,7 +6,7 @@ | |||
|
|||
### Bug Fixes | |||
|
|||
_None_ | |||
* Fixed `swiftlint` warnings in generated color extensions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use the same format as the other entries:
- credit yourself
- add a link to this PR
- a
.
at the end of the sentence and 2 spaces
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix the changelog entry format. Other than that, this LGTM.
CHANGELOG.md
Outdated
@@ -6,7 +6,9 @@ | |||
|
|||
### Bug Fixes | |||
|
|||
_None_ | |||
* Fixed `swiftlint` warnings in generated color extensions. | |||
[Roman Laitarenko](https://github.com/evil159) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hate to be nitpicky here, but please indent the username and PR links.
There was inconsistency in
swiftlint
rules:file_length
, andline_length
were disabled but not enabled back(probably not a big deal, just a minor thing).Another thing was that vertical alignment of variables inside
Color
extension initialiser causedswiftlint
to emit a warning based onoperator_usage_whitespace
rule, fixed it by disabling this rule for theColor
extension.