Skip to content

Commit

Permalink
Add SwiftLint build phase
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-pod committed Mar 4, 2024
1 parent a488c72 commit 82b2b00
Showing 1 changed file with 42 additions and 6 deletions.
48 changes: 42 additions & 6 deletions NavigationBarExtension.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -196,6 +196,7 @@
buildPhases = (
2791622B06362A6507B006C9 /* [CP] Check Pods Manifest.lock */,
607FACCC1AFB9204008FA782 /* Sources */,
AC88E9EC2B9611ED0073F85B /* SwiftLint */,
607FACCD1AFB9204008FA782 /* Frameworks */,
607FACCE1AFB9204008FA782 /* Resources */,
3DDDF70962B4934782466AD9 /* [CP] Embed Pods Frameworks */,
Expand Down Expand Up @@ -336,6 +337,26 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NavigationBarExtension_Example/Pods-NavigationBarExtension_Example-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
AC88E9EC2B9611ED0073F85B /* SwiftLint */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
);
name = SwiftLint;
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/SwiftLint/swiftlint\"\n\n";
showEnvVarsInLog = 0;
};
EB67672EA378BB5EF4ABA0DD /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand Down Expand Up @@ -502,7 +523,8 @@
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
VALIDATE_PRODUCT = YES;
};
name = Release;
Expand All @@ -515,7 +537,10 @@
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = U5M7X5V6ZG;
INFOPLIST_FILE = "$(SRCROOT)/Example/NavigationBarExtension/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.1.0;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "com.applidium.NavigationBarExtension-Example";
Expand All @@ -534,7 +559,10 @@
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = U5M7X5V6ZG;
INFOPLIST_FILE = "$(SRCROOT)/Example/NavigationBarExtension/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.1.0;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "com.applidium.NavigationBarExtension-Example";
Expand All @@ -558,7 +586,11 @@
"$(inherited)",
);
INFOPLIST_FILE = Example/Tests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
Expand All @@ -576,7 +608,11 @@
"$(inherited)",
);
INFOPLIST_FILE = Example/Tests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
Expand Down

0 comments on commit 82b2b00

Please sign in to comment.