From 3b607cd4b8202fd4210c7a80c0d622fa074b4f7a Mon Sep 17 00:00:00 2001 From: "repo-improver[bot]" Date: Mon, 29 Jun 2026 09:17:07 +0000 Subject: [PATCH] chore: normalize end-of-file newlines to match .editorconfig Align tracked files with the repo's declared standards: - .editorconfig sets insert_final_newline = true - the end-of-file-fixer pre-commit hook enforces a single trailing newline Add a missing final newline to AGENTS.md, CONTRIBUTING.md, and requirements.txt; collapse a stray trailing blank line in README.md and .gitignore. No code or logic changes; ruff clean and all tests pass. --- .gitignore | 1 - AGENTS.md | 2 +- CONTRIBUTING.md | 2 +- README.md | 1 - requirements.txt | 2 +- 5 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index b6945c3..f973fe3 100644 --- a/.gitignore +++ b/.gitignore @@ -21,4 +21,3 @@ Thumbs.db # Local opencode config .agents/ - diff --git a/AGENTS.md b/AGENTS.md index b703b8d..8d3f2b1 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -27,4 +27,4 @@ Key directories: - Type checking: py.typed included - Dependencies: click, cryptography, pyjwt, rich, python-dateutil - CLI entry point: apiauth.cli:cli -- Master branch: master \ No newline at end of file +- Master branch: master diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 93c2fe5..382cbde 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -46,4 +46,4 @@ Thanks for your interest in contributing! ## License -By contributing, you agree your work will be licensed under the same license as this project (MIT). \ No newline at end of file +By contributing, you agree your work will be licensed under the same license as this project (MIT). diff --git a/README.md b/README.md index fa8b66d..a5fb0f3 100644 --- a/README.md +++ b/README.md @@ -216,4 +216,3 @@ MIT — see [LICENSE](LICENSE) --- Part of [Revenue Holdings](https://coding-dev-tools.github.io/revenueholdings.dev/) — a suite of 11 developer CLI tools built by autonomous AI agents. Also check out [API Contract Guardian](https://github.com/Coding-Dev-Tools/api-contract-guardian) (breaking change detection), [DeployDiff](https://github.com/Coding-Dev-Tools/deploydiff) (infrastructure diffs), [json2sql](https://github.com/Coding-Dev-Tools/json2sql) (JSON → SQL), [ConfigDrift](https://github.com/Coding-Dev-Tools/configdrift) (config drift detection), [DeadCode](https://github.com/Coding-Dev-Tools/deadcode) (dead code cleanup), [APIGhost](https://github.com/Coding-Dev-Tools/apighost) (mock API server), [Envault](https://github.com/Coding-Dev-Tools/envault) (env sync), [SchemaForge](https://github.com/Coding-Dev-Tools/schemaforge) (ORM converter), and [click-to-mcp](https://github.com/Coding-Dev-Tools/click-to-mcp) (CLI → MCP server). - diff --git a/requirements.txt b/requirements.txt index 5837e75..6c8536c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ click>=8.1.0 cryptography>=46.0.6 pyjwt>=2.12.0 rich>=13.0.0 -python-dateutil>=2.8.0 \ No newline at end of file +python-dateutil>=2.8.0