From 9e0b1e2d75fd6a3e5c5d2ff37dc015511d28d1ac Mon Sep 17 00:00:00 2001 From: baku-ccron Date: Sun, 20 Sep 2026 11:43:27 +0000 Subject: [PATCH] style: apply the current pre-commit hooks repo-wide `rainix-sol / static` runs `pre-commit run --all-files` and has been red on every PR for reasons unrelated to the PR: two committed files no longer match what the current hook set produces, so the run reports "files were modified by this hook" and exits 1. The workflows are consumed at `@main` and the hooks come from the rainix devshell, so the formatters moved under a repo that did not. This is the formatting-only commit that re-syncs them: - `taplo` reindents the `REUSE.toml` `path` array from 4 spaces to 2. - `yamlfmt` drops the blank line after the SPDX header in `.coderabbitai.yaml`. No behaviour changes; the REUSE annotation covers the same paths. Closes #38 Co-Authored-By: Claude Opus 5 (1M context) --- .coderabbitai.yaml | 1 - REUSE.toml | 30 +++++++++++++++--------------- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/.coderabbitai.yaml b/.coderabbitai.yaml index 63c3ccb..c6e9c57 100644 --- a/.coderabbitai.yaml +++ b/.coderabbitai.yaml @@ -1,6 +1,5 @@ # SPDX-License-Identifier: LicenseRef-DCL-1.0 # SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd - reviews: path_filters: - "!audit/**" diff --git a/REUSE.toml b/REUSE.toml index e24eac7..e85bffb 100644 --- a/REUSE.toml +++ b/REUSE.toml @@ -2,21 +2,21 @@ version = 1 [[annotations]] path = [ - ".gas-snapshot", - ".github/workflows/**/", - ".vscode/**/", - ".coderabbitai.yaml", - ".gitignore", - "audit/**/", - "CLAUDE.md", - "README.md", - "flake.lock", - "flake.nix", - "foundry.toml", - "slither.config.json", - "REUSE.toml", - "soldeer.lock", - ".soldeerignore", + ".gas-snapshot", + ".github/workflows/**/", + ".vscode/**/", + ".coderabbitai.yaml", + ".gitignore", + "audit/**/", + "CLAUDE.md", + "README.md", + "flake.lock", + "flake.nix", + "foundry.toml", + "slither.config.json", + "REUSE.toml", + "soldeer.lock", + ".soldeerignore", ] SPDX-FileCopyrightText = "Copyright (c) 2020 Rain Open Source Software Ltd" SPDX-License-Identifier = "LicenseRef-DCL-1.0"