Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
aac98df8
Commit
aac98df8
authored
Jul 09, 2022
by
Jonas Kaufmann
Committed by
Antoine Kaufmann
Jul 12, 2022
Browse files
exclude graphlib.py from pre-commit
parent
bc1bb798
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
.pre-commit-config.yaml
.pre-commit-config.yaml
+1
-0
Makefile
Makefile
+12
-4
No files found.
.pre-commit-config.yaml
View file @
aac98df8
exclude
:
^experiments/simbricks/utils/graphlib.py$
repos
:
-
repo
:
local
hooks
:
...
...
Makefile
View file @
aac98df8
...
...
@@ -72,16 +72,24 @@ lint-clang-format:
$(CLANG_FORMAT)
--dry-run
--style
=
file
`
cat
.lint-files
`
lint-yapf
:
yapf
--recursive
--diff
results/ experiments/
yapf
--recursive
--diff
\
--exclude
experiments/simbricks/utils/graphlib.py
\
--
results/ experiments/
format-yapf
:
yapf
--recursive
--in-place
results/ experiments/
yapf
--recursive
--in-place
\
--exclude
experiments/simbricks/utils/graphlib.py
\
--
results/ experiments/
lint-isort
:
isort
--diff
results/ experiments/
isort
--diff
\
--skip
experiments/simbricks/utils/graphlib.py
\
results/ experiments/
format-isort
:
isort
--overwrite-in-place
results/ experiments/
isort
--overwrite-in-place
\
--skip
experiments/simbricks/utils/graphlib.py
\
results/ experiments/
lint
:
lint-cpplint lint-clang-format
lint-all
:
lint lint-clang-tidy
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment