revert linters disable

This commit is contained in:
Ivan Smolin 2017-04-27 16:56:56 +03:00
parent fba5894390
commit 044a05b4b6
2 changed files with 5 additions and 5 deletions

View File

@ -932,7 +932,7 @@
};
782B1B3D1C7343CD003F8A95 /* Tailor */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 8;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
@ -940,13 +940,13 @@
name = Tailor;
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 1;
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "if hash tailor 2>/dev/null; then\n tailor --except=trailing-whitespace,forced-type-cast\nelse\n echo \"warning: Please install Tailor from https://tailor.sh\"\nfi";
};
782B1B3E1C7343E0003F8A95 /* SwiftLint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 8;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
@ -954,7 +954,7 @@
name = SwiftLint;
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 1;
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";
};

View File

@ -51,5 +51,5 @@ struct ResizeDrawingOperation: DrawingOperation {
context.interpolationQuality = .high
context.draw(image, in: drawRect)
}
}