"tests/vscode:/vscode.git/clone" did not exist on "9b2c0a7dbe5487e700a0039a09c277d73a17ccc2"
Commit 27ca27d4 authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

exclude graphlib.py from linting and formatting

parent f4092708
......@@ -23,13 +23,18 @@
include mk/subdir_pre.mk
lint-python:
pylint -d missing-module-docstring,missing-class-docstring experiments/ results/
pylint -d missing-module-docstring,missing-class-docstring \
--ignore-paths experiments/simbricks/utils/graphlib.py \
experiments/ results/
typecheck-python:
$(MAKE) typecheck-experiments typecheck-results typecheck-experiments-ae
typecheck-experiments:
pytype -j 0 --keep-going --exclude "**/ae/*" -- experiments/
pytype -j 0 --keep-going \
--exclude experiments/pyexps/ae/ \
experiments/simbricks/utils/graphlib.py \
-- experiments/
typecheck-experiments-ae:
pytype -j 0 --keep-going experiments/pyexps/ae/
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment