mirror of
https://github.com/cyclotruc/gitingest.git
synced 2026-04-28 13:39:29 +00:00
Some checks failed
CI / test (macos-latest, 3.10) (push) Has been cancelled
CI / test (macos-latest, 3.11) (push) Has been cancelled
CI / test (macos-latest, 3.12) (push) Has been cancelled
CI / test (macos-latest, 3.13) (push) Has been cancelled
CI / test (macos-latest, 3.8) (push) Has been cancelled
CI / test (macos-latest, 3.9) (push) Has been cancelled
CI / test (ubuntu-latest, 3.10) (push) Has been cancelled
CI / test (ubuntu-latest, 3.11) (push) Has been cancelled
CI / test (ubuntu-latest, 3.12) (push) Has been cancelled
CI / test (ubuntu-latest, 3.13) (push) Has been cancelled
CI / test (ubuntu-latest, 3.8) (push) Has been cancelled
CI / test (ubuntu-latest, 3.9) (push) Has been cancelled
CI / test (windows-latest, 3.10) (push) Has been cancelled
CI / test (windows-latest, 3.11) (push) Has been cancelled
CI / test (windows-latest, 3.12) (push) Has been cancelled
CI / test (windows-latest, 3.13) (push) Has been cancelled
CI / test (windows-latest, 3.8) (push) Has been cancelled
CI / test (windows-latest, 3.9) (push) Has been cancelled
OSSF Scorecard / Scorecard analysis (push) Has been cancelled
* refactor: centralize PAT validation, streamline repo checks & housekeeping
* `.venv*` to `.gitignore`
* `# type: ignore[attr-defined]` hints in `compat_typing.py` for IDE-agnostic imports
* Helpful PAT string in `InvalidGitHubTokenError` for easier debugging
* Bump **ruff-pre-commit** hook → `v0.12.1`
* CONTRIBUTING:
* Require **Python 3.9+**
* Recommend signed (`-S`) commits
* PAT validation now happens **only** in entry points
(`utils.auth.resolve_token` for CLI/lib, `server.process_query` for Web UI)
* Unified `_check_github_repo_exists` into `check_repo_exists`, replacing
`curl -I` with `curl --silent --location --write-out %{http_code} -o /dev/null`
* Broaden `_GITHUB_PAT_PATTERN`
* `create_git_auth_header` raises `ValueError` when hostname is missing
* Tests updated to expect raw HTTP-code output
* Superfluous “token can be set via `GITHUB_TOKEN`” notes in docstrings
* `.gitingestignore` & `.terraform` from `DEFAULT_IGNORE_PATTERNS`
* Token validation inside `create_git_command`
* Obsolete `test_create_git_command_invalid_token`
* Adjust `test_clone.py` and `test_git_utils.py` for new status-code handling
* Consolidate mocks after token-validation relocation
BREAKING CHANGE:
`create_git_command` no longer validates GitHub tokens; callers must ensure
tokens are valid (via `validate_github_token`) before invoking lower-level
git helpers.
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
134 lines
4.1 KiB
YAML
134 lines
4.1 KiB
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
# Files
|
|
- id: check-added-large-files
|
|
description: "Prevent large files from being committed."
|
|
args: ["--maxkb=10000"]
|
|
- id: check-case-conflict
|
|
description: "Check for files that would conflict in case-insensitive filesystems."
|
|
- id: fix-byte-order-marker
|
|
description: "Remove utf-8 byte order marker."
|
|
- id: mixed-line-ending
|
|
description: "Replace mixed line ending."
|
|
|
|
# Links
|
|
- id: destroyed-symlinks
|
|
description: "Detect symlinks which are changed to regular files with a content of a path which that symlink was pointing to."
|
|
|
|
# File files for parseable syntax: python
|
|
- id: check-ast
|
|
|
|
# File and line endings
|
|
- id: end-of-file-fixer
|
|
description: "Ensure that a file is either empty, or ends with one newline."
|
|
- id: trailing-whitespace
|
|
description: "Trim trailing whitespace."
|
|
|
|
# Python
|
|
- id: check-docstring-first
|
|
description: "Check a common error of defining a docstring after code."
|
|
- id: requirements-txt-fixer
|
|
description: "Sort entries in requirements.txt."
|
|
|
|
- repo: https://github.com/MarcoGorelli/absolufy-imports
|
|
rev: v0.3.1
|
|
hooks:
|
|
- id: absolufy-imports
|
|
description: "Automatically convert relative imports to absolute. (Use `args: [--never]` to revert.)"
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.20.0
|
|
hooks:
|
|
- id: pyupgrade
|
|
description: "Automatically upgrade syntax for newer versions."
|
|
args: [--py3-plus, --py36-plus]
|
|
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
|
rev: v1.10.0
|
|
hooks:
|
|
- id: python-check-blanket-noqa
|
|
description: "Enforce that `noqa` annotations always occur with specific codes. Sample annotations: `# noqa: F401`, `# noqa: F401,W203`."
|
|
- id: python-check-blanket-type-ignore
|
|
description: "Enforce that `# type: ignore` annotations always occur with specific codes. Sample annotations: `# type: ignore[attr-defined]`, `# type: ignore[attr-defined, name-defined]`."
|
|
- id: python-use-type-annotations
|
|
description: "Enforce that python3.6+ type annotations are used instead of type comments."
|
|
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 6.0.1
|
|
hooks:
|
|
- id: isort
|
|
description: "Sort imports alphabetically, and automatically separated into sections and by type."
|
|
|
|
|
|
- repo: https://github.com/djlint/djLint
|
|
rev: v1.36.4
|
|
hooks:
|
|
- id: djlint-reformat-jinja
|
|
|
|
- repo: https://github.com/igorshubovych/markdownlint-cli
|
|
rev: v0.45.0
|
|
hooks:
|
|
- id: markdownlint
|
|
description: "Lint markdown files."
|
|
args: ["--disable=line-length"]
|
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.12.1
|
|
hooks:
|
|
- id: ruff-check
|
|
- id: ruff-format
|
|
|
|
- repo: https://github.com/jsh9/pydoclint
|
|
rev: 0.6.7
|
|
hooks:
|
|
- id: pydoclint
|
|
name: pydoclint for source
|
|
args: [--style=numpy]
|
|
files: ^src/
|
|
|
|
- repo: https://github.com/pycqa/pylint
|
|
rev: v3.3.7
|
|
hooks:
|
|
- id: pylint
|
|
name: pylint for source
|
|
files: ^src/
|
|
additional_dependencies:
|
|
[
|
|
click>=8.0.0,
|
|
"fastapi[standard]>=0.109.1",
|
|
pydantic,
|
|
pytest-asyncio,
|
|
pytest-mock,
|
|
python-dotenv,
|
|
slowapi,
|
|
starlette>=0.40.0,
|
|
tiktoken,
|
|
pathspec,
|
|
uvicorn>=0.11.7,
|
|
]
|
|
- id: pylint
|
|
name: pylint for tests
|
|
files: ^tests/
|
|
args:
|
|
- --rcfile=tests/.pylintrc
|
|
additional_dependencies:
|
|
[
|
|
click>=8.0.0,
|
|
"fastapi[standard]>=0.109.1",
|
|
pydantic,
|
|
pytest-asyncio,
|
|
pytest-mock,
|
|
python-dotenv,
|
|
slowapi,
|
|
starlette>=0.40.0,
|
|
tiktoken,
|
|
pathspec,
|
|
uvicorn>=0.11.7,
|
|
]
|
|
|
|
- repo: meta
|
|
hooks:
|
|
- id: check-hooks-apply
|
|
- id: check-useless-excludes
|