Skip to content

Commit

Permalink
Using spacecommander to format
Browse files Browse the repository at this point in the history
  • Loading branch information
frankus committed Dec 1, 2015
1 parent d6bc8a4 commit bc3e2fa
Show file tree
Hide file tree
Showing 201 changed files with 2,475 additions and 2,214 deletions.
8 changes: 4 additions & 4 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Language: Cpp
AccessModifierOffset: -1
ConstructorInitializerIndentWidth: 4

AlignAfterOpenBracket: true
AlignAfterOpenBracket: false
AlignEscapedNewlinesLeft: true
AlignOperands: false
AlignTrailingComments: true
Expand Down Expand Up @@ -41,9 +41,9 @@ ObjCSpaceAfterProperty: true
ObjCSpaceBeforeProtocolList: true
PenaltyBreakBeforeFirstCallParameter: 10000
PenaltyBreakComment: 300
PenaltyBreakString: 1000
PenaltyBreakString: 10000
PenaltyBreakFirstLessLess: 120
PenaltyExcessCharacter: 1000000
PenaltyExcessCharacter: 1
PenaltyReturnTypeOnItsOwnLine: 200
PointerAlignment: Right
SpacesBeforeTrailingComments: 1
Expand All @@ -60,7 +60,7 @@ SpacesInAngles: false
SpaceInEmptyParentheses: false
SpacesInCStyleCastParentheses: false
SpaceAfterCStyleCast: false
SpacesInContainerLiterals: true
SpacesInContainerLiterals: false
SpaceBeforeAssignmentOperators: true

ContinuationIndentWidth: 4
Expand Down
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ xcuserdata/

# OSX noise
.DS_Store
profile

# Emacs noise
*~

# other noise
.svn

6 changes: 3 additions & 3 deletions ApptentiveConnect/source/ATConnect.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
#define kATConnectVersionString @"2.1"

#if TARGET_OS_IPHONE
# define kATConnectPlatformString @"iOS"
#define kATConnectPlatformString @"iOS"
#elif TARGET_OS_MAC
# define kATConnectPlatformString @"Mac OS X"
#define kATConnectPlatformString @"Mac OS X"
@class ATFeedbackWindowController;
#endif

Expand All @@ -45,7 +45,7 @@ extern NSString *const ATSurveySentNotification;
extern NSString *const ATSurveyIDKey;

/** Supported Push Providers for use in `setPushNotificationIntegration:withDeviceToken:` */
typedef NS_ENUM(NSInteger, ATPushProvider){
typedef NS_ENUM(NSInteger, ATPushProvider) {
/** Specifies the Apptentive push provider. */
ATPushProviderApptentive,
/** Specifies the Urban Airship push provider. */
Expand Down
Loading

0 comments on commit bc3e2fa

Please sign in to comment.