├── .gitignore ├── LICENSE ├── README.md ├── SWIFTLINT.markdown ├── com.raywenderlich.swiftlint.yml └── screens ├── add-run-script.png ├── empty-run-script.png ├── indentation.png ├── project_settings.png ├── swiftlint-warning.png ├── trailing-whitespace.png └── xcode-jump-bar.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/README.md -------------------------------------------------------------------------------- /SWIFTLINT.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/SWIFTLINT.markdown -------------------------------------------------------------------------------- /com.raywenderlich.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/com.raywenderlich.swiftlint.yml -------------------------------------------------------------------------------- /screens/add-run-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/screens/add-run-script.png -------------------------------------------------------------------------------- /screens/empty-run-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/screens/empty-run-script.png -------------------------------------------------------------------------------- /screens/indentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/screens/indentation.png -------------------------------------------------------------------------------- /screens/project_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/screens/project_settings.png -------------------------------------------------------------------------------- /screens/swiftlint-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/screens/swiftlint-warning.png -------------------------------------------------------------------------------- /screens/trailing-whitespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/screens/trailing-whitespace.png -------------------------------------------------------------------------------- /screens/xcode-jump-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/swift-style-guide-by-kodeco-in-chinese/HEAD/screens/xcode-jump-bar.png --------------------------------------------------------------------------------