Skip to content

Commit

Permalink
fix: linters
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine Gelloz committed Jan 3, 2025
1 parent a7d10ab commit abd1e83
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ docs: build

qa: lint test

# renovate: datasource=github-releases depName=radiofrance/lint-config
LINT_CONFIG_VERSION=v1.0.1
LINT_CONFIG_VERSION = v1.0.2

lint: ## Lint source code
curl -o .golangci.yml -sS "https://raw.githubusercontent.com/radiofrance/lint-config/${LINT_CONFIG_VERSION}/.golangci.yml"
golangci-lint run --verbose

PKG := "./..."
RUN := ".*"
RED := $(shell tput setaf 1)
GREEN := $(shell tput setaf 2)
BLUE := $(shell tput setaf 4)
RESET := $(shell tput sgr0)
PKG = ./...
RUN = ".*"
RED = $(shell tput setaf 1)
GREEN = $(shell tput setaf 2)
BLUE = $(shell tput setaf 4)
RESET = $(shell tput sgr0)

.PHONY: test
test: ## Run tests
Expand Down
4 changes: 1 addition & 3 deletions pkg/graphviz/graphviz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ func Test_GenerateDotviz(t *testing.T) {
map[string]string{})
require.NoError(t, err)

dir, err := os.MkdirTemp("/tmp", "dib-test")
require.NoError(t, err)
defer os.RemoveAll(dir)
dir := t.TempDir()

dotFile := path.Join(dir, "dib.dot")
err = graphviz.GenerateDotviz(graph, dotFile)
Expand Down

0 comments on commit abd1e83

Please sign in to comment.