Last active
May 10, 2024 15:36
-
-
Save raphaelguye/36258b85a08be7b878195207c9b29ff7 to your computer and use it in GitHub Desktop.
Xcode Script - XcodeFormatting
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
| set -e | |
| defaults write com.apple.dt.Xcode DVTTextEditorTrimTrailingWhitespace -bool YES | |
| defaults write com.apple.dt.Xcode DVTTextEditorTrimWhitespaceOnlyLines -bool YES | |
| defaults write com.apple.dt.Xcode DVTTextIndentTabWidth -int 2 | |
| defaults write com.apple.dt.Xcode DVTTextIndentWidth -int 2 | |
| defaults write com.apple.dt.Xcode DVTTextPageGuideLocation -int 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment