Skip to content
Open
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -17,7 +17,7 @@ repos:
exclude: external/.*$

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v15.0.6
rev: v21.1.6
hooks:
- id: clang-format
exclude: external/.*$
Expand All @@ -29,7 +29,7 @@ repos:
additional_dependencies: [ pyyaml ]
# - id: cmake-lint

- repo: https://github.com/psf/black
rev: 22.12.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.11.0
hooks:
- id: black
2 changes: 1 addition & 1 deletion include/Particles.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ class Particles : public G4VPhysicsConstructor {
virtual void ConstructParticle();

// This method is dummy
virtual void ConstructProcess(){};
virtual void ConstructProcess() {};
};
#endif