Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/branch-22.06' into improve-has…
Browse files Browse the repository at this point in the history
…h-join
  • Loading branch information
PointKernel committed Apr 29, 2022
2 parents 9667491 + 3c208a6 commit 92e5527
Show file tree
Hide file tree
Showing 375 changed files with 9,148 additions and 5,401 deletions.
36 changes: 23 additions & 13 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright (c) 2019-2022, NVIDIA CORPORATION.

repos:
- repo: https://github.com/PyCQA/isort
rev: 5.6.4
Expand Down Expand Up @@ -56,20 +58,28 @@ repos:
hooks:
- id: pydocstyle
args: ["--config=python/.flake8"]
- repo: local
exclude: |
(?x)^(
ci|
cpp|
conda|
docs|
java|
notebooks|
python/dask_cudf|
python/cudf_kafka|
python/custreamz|
python/cudf/cudf/tests
)
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v11.1.0
hooks:
- id: clang-format
# Using the pre-commit stage to simplify invocation of all
# other hooks simultaneously (via any other hook stage). This
# can be removed if we also move to running clang-format
# entirely through pre-commit.
stages: [commit]
name: clang-format
description: Format files with ClangFormat.
entry: clang-format -i
language: system
files: \.(cu|cuh|h|hpp|cpp|inl)$
args: ['-fallback-style=none']
types_or: [file]
args: ['-fallback-style=none', '-style=file', '-i']
- repo: local
hooks:
- id: cmake-format
name: cmake-format
entry: ./cpp/scripts/run-cmake-format.sh cmake-format
Expand All @@ -78,7 +88,7 @@ repos:
# Note that pre-commit autoupdate does not update the versions
# of dependencies, so we'll have to update this manually.
additional_dependencies:
- cmake-format==0.6.11
- cmakelang==0.6.13
- id: cmake-lint
name: cmake-lint
entry: ./cpp/scripts/run-cmake-format.sh cmake-lint
Expand All @@ -87,7 +97,7 @@ repos:
# Note that pre-commit autoupdate does not update the versions
# of dependencies, so we'll have to update this manually.
additional_dependencies:
- cmake-format==0.6.11
- cmakelang==0.6.13
- id: copyright-check
name: copyright-check
# This hook's use of Git tools appears to conflict with
Expand Down
Loading

0 comments on commit 92e5527

Please sign in to comment.