Skip to content

Commit

Permalink
chore: Remove migrations exclusion from pre-commit config
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Sep 10, 2024
1 parent 0200520 commit 2378c6b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,3 @@ repos:
name: pip-compile requirements_dev.in
args: [requirements_dev.in, -o, requirements_dev.txt]
files: ^requirements(_nongpl|_dev)?\.(in|txt)$
exclude: /migrations/
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ builtins-ignorelist = ["copyright"]
[tool.ruff.lint.per-file-ignores]
"docs/conf.py" = ["INP001"] # no __init__.py file
"*/management/commands/*" = ["INP001"] # no __init__.py file
"*/migrations/*" = ["E501"]
"tests/*" = [
"D", # docstring
"PT", # unittest
Expand Down

0 comments on commit 2378c6b

Please sign in to comment.