Skip to content
Snippets Groups Projects
Commit c62257ad authored by Mikolaj Rybinski's avatar Mikolaj Rybinski
Browse files

Pre-commit hook to filter-out output cells

parent 6e24f658
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
for U in "$(git diff --cached --name-only)"; do
# skip files staged for deletion
test -e "$U" || continue
if [[ "$U" =~ .ipynb$ ]]; then
jupyter nbconvert --debug --ClearOutputPreprocessor.enabled=True --inplace "$U"
fi
git add "$U"
done
black
isort
jupyter_contrib_nbextensions
jupyterlab
jupyterlab-code-formatter
jupyterlab-execute-time
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment