Skip to content

Commit

Permalink
golangci-lint: symlink config file to $HOME
Browse files Browse the repository at this point in the history
  • Loading branch information
geodimm committed Feb 19, 2024
1 parent 6b2fd23 commit afd4154
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SHELL := /bin/bash

.DEFAULT_GOAL := all
.PHONY: bat git kitty tig zsh
.PHONY: bat git kitty tig zsh golangci-lint

include test.mk

Expand Down Expand Up @@ -74,7 +74,7 @@ ohmyzsh-configure: ## Configure Oh My Zsh
fzf: ## Configure FZF
"${HOMEBREW_PREFIX}/opt/fzf/install" --no-bash --no-fish --key-bindings --completion --no-update-rc

tools: bat tig jqp
tools: bat tig jqp golangci-lint

bat:
mkdir -p "${XDG_CONFIG_HOME}/bat"
Expand All @@ -87,6 +87,9 @@ jqp: JQP_VERSION=v0.0.4
jqp: ## Install jqp
curl -s "https://raw.githubusercontent.com/geodimm/jqp/${JQP_VERSION}/scripts/install.sh" | bash

golangci-lint:
ln -fs "${DOTFILES_DIR}/golangci-lint/golangci.yml" "${HOME}/.golangci.yml"

neovim: neovim-install neovim-configure ## Install and configure neovim

neovim-install: ## Install neovim
Expand Down

0 comments on commit afd4154

Please sign in to comment.