This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| AppDelegate.swift | |
| In Project settings set the "Main Interface" text field to empty. | |
| With the Interface Builder implementation, | |
| the app launches the initial view controller of the storyboard set in the target’s Main Interface. | |
| To do something similar in code, you need to take a different approach. | |
| Open AppDelegate.swift and replace the code inside application(_:didFinishLaunchingWithOptions:) with the following:” |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @propertyWrapper struct WhiteSpacesTrimmed { | |
| var projectedValue: String | |
| var wrappedValue: String { | |
| didSet { | |
| self.projectedValue = wrappedValue | |
| wrappedValue = wrappedValue.trimmingCharacters(in: .whitespaces) | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # '^(?:\[IMPROVEMENT\]|\[FEATURE\]|\[BUGFIX\])\[([A-Z])+\-(\d+)\]\s(\w){1,}(\w|\s|\-){1,}$' | |
| # Github action for Jira ticket verification | |
| name: JIRA Validation | |
| on: | |
| pull_request: | |
| types: ['opened', 'edited', 'reopened', 'synchronize'] | |
| jobs: |
OlderNewer