Skip to content
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

chore(deps): update pre-commit-deps #29

Merged
merged 2 commits into from
Aug 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repos:
files: *buildifier_external_files
args: *buildifier_external_args
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -44,12 +44,12 @@ repos:
- id: yapf
args: [-i, --style, .style.yapf]
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.12.0
rev: v3.13.0
hooks:
- id: reorder-python-imports
args: [--py37-plus]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.2
rev: v0.5.7
hooks:
- id: ruff
args: [--fix, --show-fixes, --exit-non-zero-on-fix]
Expand Down
4 changes: 2 additions & 2 deletions build_tools/run_pylint.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
# Must be set before pylint is imported!
os.environ['PYLINTHOME'] = os.environ['TEST_UNDECLARED_OUTPUTS_DIR']

import pylint.lint # noqa
import pylint.reporters.text # noqa
import pylint.lint
import pylint.reporters.text

PYLINTRC_FILE = './pylint.rc'
NUM_CPU_CORES_FOR_PYLINT = 2
Expand Down