From d814168e754f44829260c8f6d528e2051118bd6b Mon Sep 17 00:00:00 2001 From: Nicolas Karolak Date: Tue, 27 Aug 2024 10:05:39 +0200 Subject: [PATCH] chore: fix lint and format for brew files --- Taskfile.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index fdf02d8..93b3050 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -26,12 +26,12 @@ tasks: lint:brew: desc: Lint Hombrew formulae - internal: true sources: + - ./Casks/*.rb - ./Formula/*.rb cmds: - - brew style . - - brew rubocop --lint . + - brew style ./Casks/*.rb ./Formula/*.rb + - brew rubocop --lint ./Casks/*.rb ./Formula/*.rb format: desc: Run formatters @@ -41,9 +41,9 @@ tasks: format:brew: desc: Format Hombrew formulae - internal: true sources: + - ./Casks/*.rb - ./Formula/*.rb cmds: - - brew style --fix . - - brew rubocop --autocorrect . + - brew style --fix ./Casks/*.rb ./Formula/*.rb + - brew rubocop --autocorrect ./Casks/*.rb ./Formula/*.rb