Skip to content

Commit

Permalink
chore: fix lint and format for brew files
Browse files Browse the repository at this point in the history
  • Loading branch information
nikaro committed Aug 27, 2024
1 parent feb905a commit d814168
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit d814168

Please sign in to comment.