10000 [3.11] GH-109408: Move the Python file whitespace check from patchcheck to pre-commit (GH-109891) by AA-Turner · Pull Request #110641 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.11] GH-109408: Move the Python file whitespace check from patchcheck to pre-commit (GH-109891) #110641

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix excludes
  • Loading branch information
AA-Turner committed Oct 10, 2023
commit 8a442665a934a81ee7cebe14911471853679ebd2
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repos:
entry: 'python Tools/scripts/reindent.py --nobackup --newline LF'
language: 'system'
types: [python]
exclude: '^(Lib/test/tokenizedata/|Tools/c-analyzer/cpython/_parser).*$'
exclude: '^(Lib/test/tokenizedata/|Tools/c-analyzer/cpython/(_parser|_capi)).*$'

- repo: https://github.com/sphinx-contrib/sphinx-lint
rev: v0.6.8
Expand Down
0