├── .editorconfig ├── .envrc ├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── ci └── test_links.py ├── justfile ├── lefthook.yml ├── pyproject.toml └── uv.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawroman/links/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | uv sync 2 | . .venv/bin/activate 3 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawroman/links/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawroman/links/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawroman/links/HEAD/README.md -------------------------------------------------------------------------------- /ci/test_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawroman/links/HEAD/ci/test_links.py -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawroman/links/HEAD/justfile -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawroman/links/HEAD/lefthook.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawroman/links/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawroman/links/HEAD/uv.lock --------------------------------------------------------------------------------