From 868a35ce4c8fe6d6e7dff07b0f4c786bae5b7680 Mon Sep 17 00:00:00 2001 From: Jesse Squires Date: Tue, 24 Jul 2018 17:11:32 -0700 Subject: [PATCH] Add IDE template macro for consistent headers Xcode has undesirable default header comments, and now you can customize them. This adds an `IDETemplateMacros.plist` file to the `xcworkspace` so that new files created in the workspace have the same, consistent default header comments automatically added: ``` // // Copyright (c) 2018 Open Whisper Systems. All rights reserved. // ``` This will prevent contributors from either (1) committing Xcode's default, or (2) having to manually copy-pasta the standard comment headers for every new file added. [See here for more details](https://oleb.net/blog/2017/07/xcode-9-text-macros/) --- .../xcshareddata/IDETemplateMacros.plist | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Signal.xcworkspace/xcshareddata/IDETemplateMacros.plist diff --git a/Signal.xcworkspace/xcshareddata/IDETemplateMacros.plist b/Signal.xcworkspace/xcshareddata/IDETemplateMacros.plist new file mode 100644 index 000000000..9ee22cb94 --- /dev/null +++ b/Signal.xcworkspace/xcshareddata/IDETemplateMacros.plist @@ -0,0 +1,10 @@ + + + + +FILEHEADER + +// Copyright (c) 2018 Open Whisper Systems. All rights reserved. +// + +