Skip to content

Commit

Permalink
fix: let just todo search all files instead of roles/playbooks
Browse files Browse the repository at this point in the history
  • Loading branch information
nymous committed Sep 28, 2024
1 parent 11c9506 commit a7ed144
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
venv_path := absolute_path(".venv")
venv := ".venv"
venv_path := absolute_path(venv)
venv_bin := venv_path / "bin"
inventory := "hosts"

Expand Down Expand Up @@ -49,4 +50,4 @@ cmdb:
# Find TODOs and comments silencing lints
[group('tooling')]
todo:
grep --recursive --extended-regexp --ignore-case --line-number --color=always 'noqa|todo' roles playbooks
grep --recursive --extended-regexp --ignore-case --line-number --color=always 'noqa|todo' --exclude-dir {{venv}}

0 comments on commit a7ed144

Please sign in to comment.