You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Formats an Objective-C file, replacing it without a backup.
# Copyright 2015 Square, Inc
export CDPATH=""
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
if [ ! -e ".clang-format" ]; then
echo "Couldn't find .clang-format file, unable to format files. Please setup this repo by running the setup-repo.sh script from your repo's top level."
echo "Also, formatting scripts should be run from the repo's top level dir."
exit 1
fi
# "#pragma Formatter Exempt" or "// MARK: Formatter Exempt" means don't format this file.