- Code compiles without errors or warnings
- All automated tests pass
- Code formatted according to team style guide
- No warnings from static analysis
- Debug print/log statements have been removed
- Unsued and commented out code has been removed
- Performance analysis reports no leaks or general performance issues
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
import Foundation | |
// Constant for configuration name from custom property in the Info.plist file | |
fileprivate let ConfigurationNameKey = "build.config" | |
// Singleton Instance used globally for shared resources and configuration | |
var ENV = Environment() | |
public struct Environment { | |
public enum Configuration: String { |
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
tap 'caskroom/cask' | |
brew 'rbenv' | |
brew 'swiftlint' | |
cask 'slack' | |
cask 'google-drive-file-stream' | |
cask 'figma' | |
casK 'visual-studio-code' | |
mas 'Xcode', id: 497799835 |