Pinterest-style visual bookmarking app with: - URL metadata extraction (OG/Twitter meta, oEmbed fallback) - Image caching in Postgres with 480px thumbnails - Multi-tag filtering with Ctrl/Cmd for OR mode - Fuzzy tag suggestions and inline tag editing - Browser console auth() with first-use password setup - Brutalist UI with Commit Mono font and Pico CSS - Light/dark mode via browser preference
21 lines
628 B
YAML
21 lines
628 B
YAML
# See for configurations: https://golangci-lint.run/usage/configuration/
|
|
version: 2
|
|
|
|
# See: https://golangci-lint.run/usage/formatters/
|
|
formatters:
|
|
default: none
|
|
enable:
|
|
- gofmt # https://pkg.go.dev/cmd/gofmt
|
|
- gofumpt # https://github.com/mvdan/gofumpt
|
|
|
|
settings:
|
|
gofmt:
|
|
simplify: true # Simplify code: gofmt with `-s` option.
|
|
|
|
gofumpt:
|
|
# Module path which contains the source code being formatted.
|
|
# Default: ""
|
|
module-path: github.com/jackc/pgx/v5 # Should match with module in go.mod
|
|
# Choose whether to use the extra rules.
|
|
# Default: false
|
|
extra-rules: true
|