From c5a58026fa4937333551e7ba05f55104a1e389ff Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Sun, 4 Jan 2026 23:47:59 +0100 Subject: [PATCH] Remove unused pre-commit hooks (#61) ### **PR Type** Enhancement ___ ### **Description** - Remove unused pre-commit hooks - Delete `pretty-format-ini` and `pretty-format-toml` ___

File Walkthrough

Relevant files
Configuration changes
.pre-commit-config.yaml
Clean up pre-commit hook configuration                                     

.pre-commit-config.yaml
  • Removed pretty-format-ini hook entry
  • Removed pretty-format-toml hook entry
+0/-8     
___ Reviewed-on: https://git.horstenkamp.eu/Screeps/screeps-deploy-action/pulls/61 --- .pre-commit-config.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ab48cd5..6d33ceb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,16 +5,12 @@ repos: hooks: - id: check-yaml - id: check-json - - id: check-toml - - id: check-xml - id: check-added-large-files args: [--enforce-all] exclude: ^dist/index\.js$ - - id: name-tests-test - id: detect-private-key - id: check-case-conflict - id: check-symlinks - - id: check-docstring-first - id: pretty-format-json args: [--autofix, --no-sort-keys, --no-ensure-ascii] - id: check-merge-conflict @@ -23,10 +19,6 @@ repos: - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks rev: v2.15.0 hooks: - - id: pretty-format-ini - args: [--autofix] - - id: pretty-format-toml - args: [--autofix] - id: pretty-format-yaml args: [--autofix]