From 7ade5d70583d19dea37531afd3aa2b92cc53c93d Mon Sep 17 00:00:00 2001 From: Horilla Date: Thu, 30 Oct 2025 14:53:12 +0530 Subject: [PATCH] [IMP] Remove formatting of migrations file from the pre-commit hooks --- .pre-commit-config.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3f3506d38..1e1992017 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,8 +10,10 @@ repos: hooks: - id: black language_version: python3.10 + exclude: '**/migrations/**' - repo: https://github.com/pycqa/isort rev: 5.13.2 hooks: - id: isort args: ["--profile", "black", "--filter-files"] + exclude: '**/migrations/**'