Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
exclude: .github/.cache

Copilot AI Mar 6, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

exclude in pre-commit is a regex; .github/.cache uses unescaped . which matches any character, so this can exclude unintended paths. Consider anchoring and escaping dots (e.g., ^\.github/\.cache/) to only skip that directory.

Suggested change
exclude: .github/.cache
exclude: ^\.github/\.cache/

Copilot uses AI. Check for mistakes.
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
Expand All @@ -21,6 +22,11 @@ repos:
- id: no-commit-to-branch
- id: fix-byte-order-marker

- repo: https://github.com/codespell-project/codespell
rev: v2.4.2
hooks:
- id: codespell

- repo: https://github.com/gitleaks/gitleaks
rev: v8.30.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ tailout stop
- `/etc/tailout/config.{yml,yaml,hcl,json,toml}`
- `$HOME/.tailout/config.{yml,yaml,hcl,json,toml}`

For exemple, you could have this content in `/etc/tailout/config.yml`:
For example, you could have this content in `/etc/tailout/config.yml`:

```yaml
tailscale:
Expand Down
4 changes: 2 additions & 2 deletions cmd/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ func buildStatusCommand(app *tailout.App) *cobra.Command {
cmd := &cobra.Command{
Args: cobra.NoArgs,
Use: "status",
Short: "Show tailout-related informations",
Long: `Show tailout-related informations.
Short: "Show tailout-related information",
Long: `Show tailout-related information.

This command will show the status of tailout nodes, including the node name and whether it is connected or not.

Expand Down
Loading