@@ -43,12 +43,6 @@ clean: ## Just remove all cf* files from the `out` directory
43
43
44
44
clear : clean # # Make everyone happy
45
45
46
- custom-lint : # # Run our custom linters
47
- @echo " Running custom linters..." # this list will grow as we cleanup all the code:
48
- bash -c " go run bin/style/main.go api util"
49
- @echo " No custom lint errors!"
50
- @echo
51
-
52
46
# TODO: update these fly-windows* to point at the correct CI repo
53
47
fly-windows-experimental : check-target-env
54
48
CF_TEST_SUITE=./integration/shared/experimental fly -t ci execute -c ci/cli/tasks/integration-windows-oneoff.yml -i cli=./ --tag " cli-windows"
@@ -147,7 +141,7 @@ integration-tests-full-ci: install-test-deps integration-cleanup
147
141
integration/shared/isolated integration/v7/isolated integration/shared/plugin integration/shared/experimental integration/v7/experimental integration/v7/push
148
142
$(ginkgo_int ) -flake-attempts $(FLAKE_ATTEMPTS ) integration/shared/global integration/v7/global
149
143
150
- lint : custom-lint # # Runs all linters and formatters
144
+ lint : # # Runs all linters and formatters
151
145
@echo " Running linters..."
152
146
go list -f " {{.Dir}}" ./... \
153
147
| grep -v -e " /cf/" -e " /fixtures/" -e " /assets/" -e " /plugin/" -e " /command/plugin" -e " fakes" \
@@ -229,7 +223,7 @@ units-full: build units-plugin units-non-plugin
229
223
version : # # Print the version number of what would be built
230
224
@echo $(CF_BUILD_VERSION ) +$(CF_BUILD_SHA ) .$(CF_BUILD_DATE )
231
225
232
- .PHONY : all build clean format version lint custom-lint
226
+ .PHONY : all build clean format version lint
233
227
.PHONY : test units units-full install-test-deps integration integration-tests-full integration-cleanup integration-experimental integration-plugin integration-isolated integration-push
234
228
.PHONY : check-target-env fly-windows-experimental fly-windows-isolated fly-windows-plugin fly-windows-push
235
229
.PHONY : help
0 commit comments