diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dfc641e..b172055 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,18 +1,15 @@ default_language_version: python: python3 repos: - - repo: https://github.com/psf/black - rev: 23.1.0 - hooks: - - id: black - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: check-toml - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: v0.0.252 + rev: v0.1.6 hooks: - id: ruff + - id: ruff-format diff --git a/src/runboat/settings.py b/src/runboat/settings.py index 21ff68d..cae2392 100644 --- a/src/runboat/settings.py +++ b/src/runboat/settings.py @@ -59,13 +59,13 @@ class Settings(BaseSettings): # The wildcard domain where the builds will be reacheable. build_domain: str # A dictionary of environment variables to set in the build container and jobs. - build_env: dict[str, str] = {} + build_env: dict[str, str] = {} # noqa: RUF012 # A dictionary of secret environment variables to set in the build container and # jobs. - build_secret_env: dict[str, str] = {} + build_secret_env: dict[str, str] = {} # noqa: RUF012 # A dictionary of variables to be set in the jinja rendering context for the # kubefiles. - build_template_vars: dict[str, str] = {} + build_template_vars: dict[str, str] = {} # noqa: RUF012 # The path of the default kubefiles to be used. build_default_kubefiles_path: Annotated[ Path | None, BeforeValidator(validate_path)