Skip to content
Merged
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ dist/
version.txt
coverage*.out
coverage.html
cover.out
cover*.out
private_pdf_examples
testdata/test-config.yaml
2 changes: 2 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ Fileganizer is a Go CLI tool that processes documents through a pipeline: text e
- Use `gofmt` / `goimports` formatting. Max line length 140.
- Group imports: stdlib first, third-party second, internal (`fileganizer/...`) last.
- Flags (like `-c` or `-f`) are never constants. When the linter complains, add `//nolint`.
- No global or function-scoped `//nolint`. Only line-scoped `//nolint` is allowed.
- Keep the whole code simple and stupid (KISS). No over-engineering, no unnecessary abstractions.
- Copyright header on every source file. For `.go` files:
```go
// Copyright 2023-2026 The Fileganizer Authors. All rights reserved.
Expand Down
Loading