Compare commits
No commits in common. "e6daab182cae34f65abaff07723cb903bb9f4ae6" and "c1399f5107f91fe2349b114cdc616df23fca8d07" have entirely different histories.
e6daab182c
...
c1399f5107
2 changed files with 2 additions and 8 deletions
|
@ -11,6 +11,7 @@ linters:
|
|||
- nakedret
|
||||
- revive
|
||||
- staticcheck # Now includes gosimple and stylecheck
|
||||
- typecheck
|
||||
- unconvert
|
||||
- unused
|
||||
- whitespace
|
||||
|
@ -68,7 +69,7 @@ formatters:
|
|||
|
||||
goimports:
|
||||
local-prefixes:
|
||||
- { { .GoModule.Name } }
|
||||
- {{.GoModule.Name}}
|
||||
|
||||
output:
|
||||
formats:
|
||||
|
|
|
@ -11,16 +11,9 @@ all: check-style test dist
|
|||
manifest-check:
|
||||
pluginctl manifest check
|
||||
|
||||
## Cleans the server build artifacts.
|
||||
.PHONY: clean-server
|
||||
clean-server:
|
||||
ifneq ($(HAS_SERVER),)
|
||||
rm -rf server/dist
|
||||
endif
|
||||
|
||||
## Builds the server, if it exists, for all supported architectures, unless MM_SERVICESETTINGS_ENABLEDEVELOPER is set.
|
||||
.PHONY: server
|
||||
server: clean-server
|
||||
server:
|
||||
ifneq ($(HAS_SERVER),)
|
||||
ifneq ($(MM_DEBUG),)
|
||||
|
|
Reference in a new issue