Skip to content

Instantly share code, notes, and snippets.

View metalg0su's full-sized avatar
😀

Seongjun Ji metalg0su

😀
View GitHub Profile
@metalg0su
metalg0su / bisect.sh
Created November 20, 2020 03:23
do bisect for me -_-
git bisect start HEAD $1
git bisect run sh -c "pytest -v"
@metalg0su
metalg0su / pre-commit
Last active September 10, 2020 14:44
python: git hooks
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit".
@metalg0su
metalg0su / setup.cfg
Last active September 10, 2020 14:13
python project
# extensions: flake8-docstring
[flake8]
exclude =
./venv
max-line-length = 120
ignore =
W503