#Formating options for .h / .m
##File
###Rules
- No
EmptyLineat begining of file - No
EmptyLineat end of file - Must start with
FileCommentBlock - Must end with
@end
| # The definition of color schemes. | |
| schemes: | |
| gruvbox_material_hard_dark: &gruvbox_material_hard_dark | |
| primary: | |
| background: '0x1d2021' | |
| foreground: '0xd4be98' | |
| normal: | |
| black: '0x32302f' | |
| red: '0xea6962' | |
| green: '0xa9b665' |
| class MockDataSource : TransporterDataSource { | |
| var startUpdatingLocationCalled = 0 | |
| var stopUpdatingLocationCalled = 0 | |
| func startUpdatingLocation() { | |
| startUpdatingLocationCalled++ | |
| } | |
| func stopUpdatingLocation() { | |
| stopUpdatingLocationCalled++ |
| public init?(json: JSON) { | |
| let optCoord = json["coordinates"] | |
| let opt = optCoord.array?.map { jsonLineString in | |
| jsonLineString.array?.map { jsonPosition in | |
| jsonPosition.array?.map { | |
| Double($0.doubleValue) | |
| } ?? [] | |
| } ?? [] | |
| } |
| language: objective-c | |
| before_script: | |
| - export LANG=en_US.UTF-8 | |
| script: | |
| - xctool -workspace MZTD.xcworkspace -scheme MZTD -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | |
| - xctool test -workspace MZTD.xcworkspace -scheme MZTD-Coverage -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | |
| before_install: | |
| - sudo easy_install cpp-coveralls | |
| after_success: | |
| - ./coveralls.rb --extension m --exclude-folder MZTDTests |
| language: objective-c | |
| before_script: | |
| - export LANG=en_US.UTF-8 | |
| script: | |
| - xctool -workspace MZTD.xcworkspace -scheme MZTD -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | |
| - xctool test -workspace MZTD.xcworkspace -scheme MZTD-Coverage -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO |
| language: objective-c | |
| before_script: | |
| - export LANG=en_US.UTF-8 | |
| script: | |
| - xctool -workspace MZTD.xcworkspace -scheme MZTD -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | |
| - xctool test -workspace MZTD.xcworkspace -scheme MZTD -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO |
| #include <iostream> | |
| #include <clang-c/Index.h> | |
| #include <clang-c/Platform.h> | |
| void printDiagnostics(CXTranslationUnit translationUnit); | |
| void printTokenInfo(CXTranslationUnit translationUnit,CXToken currentToken); | |
| void printCursorTokens(CXTranslationUnit translationUnit,CXCursor currentCursor); | |
| CXChildVisitResult cursorVisitor(CXCursor cursor, CXCursor parent, CXClientData client_data); |
#Formating options for .h / .m
##File
###Rules
EmptyLine at begining of fileEmptyLine at end of fileFileCommentBlock@end#Objective-C Style Guide
##Comments
###General Info
Block comments /**/ should be avoided in favor of // (though they are not banned).
Inside comments, references to variables, classes and protocols should be surrounded by |.
// This class is responsible for keeping up to date a list of |Item| objects.