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
# file options | |
--exclude Pods,**/.build,**/Package.swift,vendor/bundle,scripts,fastlane,**/L10n.swift,**/Assets.swift,**/*.generated.swift | |
# format options | |
--swiftversion 5.5 | |
## elseOnSameLine | |
--guardelse same-line |
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
excluded: # paths to ignore during linting. Takes precedence over `included`. | |
- Pods | |
- .build | |
- vendor/bundle | |
- scripts | |
- BuildTools | |
- fastlane | |
- templates | |
line_length: 160 | |
identifier_name: |
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
desc 'Collects TestFlight feedback and creates sub-tasks in Jira.' | |
desc '#### Example:' | |
desc "```\nbundle exec fastlane feedback api_key:1a2b3c4d parent:NA-123 build:456\n```" | |
desc '#### Options:' | |
desc ' * **`api_key`**: Your Jira API key. See https://id.atlassian.com/manage-profile/security/api-tokens' | |
desc ' * **`parent`**: The ticket number of the parent task the sub-tasks should be added to.' | |
desc ' * **`build`**: Filter TestFlight feedback by build number.' | |
lane :feedback do |options| | |
# Lookout for this to be resolved: https://jira.atlassian.com/browse/JSWCLOUD-18031 |
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
// | |
// UIColor+SystemColors.swift | |
// | |
// https://gist.github.com/hoppsen/f3cbe2dd51ad40cfe80609b2e9bebada | |
// | |
// More about Apple's System Colors can be found here: | |
// https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/color/ | |
import UIKit |
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
// | |
// UIFont+DynamicTypeSizes.swift | |
// | |
// https://gist.github.com/hoppsen/6b752057b98fa7527ee1f4d4ba05fef0 | |
// | |
// More about Apple's Typography can be found here: | |
// https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/typography/ | |
import UIKit |