diff --git a/.gitignore b/.gitignore index b711704..e2e999b 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,9 @@ ## Editorconfig !.editorconfig +## Ownbrew +!.ownbrew.yaml + ## Husky !.husky/ !.husky.yaml diff --git a/ownbrew.yaml b/.ownbrew.yaml similarity index 82% rename from ownbrew.yaml rename to .ownbrew.yaml index 53803b7..1249b2e 100644 --- a/ownbrew.yaml +++ b/.ownbrew.yaml @@ -1,5 +1,5 @@ -# yaml-language-server: $schema=https://raw.githubusercontent.com/foomo/ownbrew/refs/tags/v0.1.0/ownbrew.schema.json -version: '1.0' +# yaml-language-server: $schema=https://raw.githubusercontent.com/foomo/ownbrew/refs/tags/v0.2.3/ownbrew.schema.json +version: '1.1' binDir: "bin" tapDir: ".ownbrew/tap" @@ -9,7 +9,7 @@ packages: ## https://github.com/golangci/golangci-lint/releases - name: golangci-lint tap: foomo/tap/golangci/golangci-lint - version: 1.61.0 + version: 2.1.6 ## https://github.com/go-courier/husky/releases - name: husky tap: foomo/tap/go-courier/husky diff --git a/Makefile b/Makefile index 3268146..f632f38 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ .DEFAULT_GOAL := help -include .makerc +PATH:=bin:$(PATH) # --- Targets -----------------------------------------------------------------