mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
Revert unwanted change on project.pbxproj
This commit is contained in:
@@ -1058,6 +1058,7 @@
|
||||
3B63D46E1E1F09DF0057BE35 /* LineLengthRuleTests.swift */,
|
||||
D4C27BFF1E12DFF500DF713E /* LinterCacheTests.swift */,
|
||||
1EB7C8521F0C45C2004BAD22 /* ModifierOrderTests.swift */,
|
||||
B25DCD0F1F7EF6DC0028A199 /* MultilineArgumentsRuleTests.swift */,
|
||||
D4CA758E1E2DEEA500A40E8A /* NumberSeparatorRuleTests.swift */,
|
||||
F90DBD802092EA81002CC310 /* MissingDocsRuleConfigurationTests.swift */,
|
||||
B25DCD0F1F7EF6DC0028A199 /* MultilineArgumentsRuleTests.swift */,
|
||||
@@ -1399,6 +1400,9 @@
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = D0D1218419E87B05005E4BAA /* Build configuration list for PBXNativeTarget "SwiftLintFramework" */;
|
||||
buildPhases = (
|
||||
6CF24C411FC9953E008CB0B1 /* Update Source/SwiftLintFramework/Models/MasterRuleList.swift */,
|
||||
D4F5851220E999C40085C6D8 /* Update Tests/SwiftLintFrameworkTests/AutomaticRuleTests.generated.swift */,
|
||||
6CF24C421FC99616008CB0B1 /* Update Tests/LinuxMain.swift */,
|
||||
D0D1216819E87B05005E4BAA /* Sources */,
|
||||
D0D1216919E87B05005E4BAA /* Frameworks */,
|
||||
D0D1216A19E87B05005E4BAA /* Headers */,
|
||||
@@ -1441,6 +1445,7 @@
|
||||
D0AAAB5319FB0960007B24B3 /* Embed Frameworks */,
|
||||
6CCFCF291CFEF6D3003239EB /* Embed Frameworks into SwiftLintFramework.framework */,
|
||||
6CCFCF321CFEF768003239EB /* Embed Swift libraries into SwiftLintFramework.framework */,
|
||||
E819854B1B09A3CB00CEB0D9 /* Run SwiftLint */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
@@ -1533,6 +1538,40 @@
|
||||
shellScript = "cd \"$TARGET_BUILD_DIR\"\nSWIFTLINTFRAMEWORK_BUNDLE=\"$FRAMEWORKS_FOLDER_PATH/SwiftLintFramework.framework\"\n\nxcrun swift-stdlib-tool --copy --verbose --Xcodesign --timestamp=none \\\n--scan-executable \"$EXECUTABLE_PATH\" \\\n--scan-folder \"$FRAMEWORKS_FOLDER_PATH\" \\\n--platform macosx --destination \"$SWIFTLINTFRAMEWORK_BUNDLE/Versions/Current/Frameworks\" \\\n--strip-bitcode\n";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
6CF24C411FC9953E008CB0B1 /* Update Source/SwiftLintFramework/Models/MasterRuleList.swift */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
"$(SRCROOT)/Source/SwiftLintFramework/Rules/*.swift",
|
||||
);
|
||||
name = "Update Source/SwiftLintFramework/Models/MasterRuleList.swift";
|
||||
outputPaths = (
|
||||
"$(SRCROOT)/Source/SwiftLintFramework/Models/MasterRuleList.swift",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if which sourcery >/dev/null; then\n make Source/SwiftLintFramework/Models/MasterRuleList.swift\nelse\n echo \"Sourcery not found, install with 'brew install sourcery'\"\nfi";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
6CF24C421FC99616008CB0B1 /* Update Tests/LinuxMain.swift */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
"$(SRCROOT)/Tests/*/*.swift",
|
||||
);
|
||||
name = "Update Tests/LinuxMain.swift";
|
||||
outputPaths = (
|
||||
"$(SRCROOT)/Tests/LinuxMain.swift",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if which sourcery >/dev/null; then\n make Tests/LinuxMain.swift\nelse\n echo \"Sourcery not found, install with 'brew install sourcery'\"\nfi";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
C2265FAB1A4B86AC00158358 /* Check Xcode Version */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
@@ -1563,6 +1602,36 @@
|
||||
shellPath = /bin/bash;
|
||||
shellScript = ". script/extract-tool";
|
||||
};
|
||||
D4F5851220E999C40085C6D8 /* Update Tests/SwiftLintFrameworkTests/AutomaticRuleTests.generated.swift */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
"$(SRCROOT)/Source/SwiftLintFramework/Rules/*.swift",
|
||||
);
|
||||
name = "Update Tests/SwiftLintFrameworkTests/AutomaticRuleTests.generated.swift";
|
||||
outputPaths = (
|
||||
"$(SRCROOT)/Tests/SwiftLintFrameworkTests/AutomaticRuleTests.generated.swift",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if which sourcery >/dev/null; then\n make Tests/SwiftLintFrameworkTests/AutomaticRuleTests.generated.swift\nelse\n echo \"Sourcery not found, install with 'brew install sourcery'\"\nfi\n";
|
||||
};
|
||||
E819854B1B09A3CB00CEB0D9 /* Run SwiftLint */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = "Run SwiftLint";
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if which swiftlint >/dev/null; then\n swiftlint\nelse\n echo \"SwiftLint does not exist, download from https://github.com/realm/SwiftLint\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
|
||||
Reference in New Issue
Block a user