Skip to content

Instantly share code, notes, and snippets.

@twyle
twyle / Makefile
Created April 29, 2022 09:45
The Project Makefile
update-pip:
@pip install --upgrade pip
install: update-pip requirements.txt
@pip install -r requirements.txt
install-dev: requirements-dev.txt
@pip install -r requirements-dev.txt
run:
@twyle
twyle / .pre-commit-config.yaml
Created April 29, 2022 08:55
Pre-commit config file.
repos:
- hooks:
- id: trailing-whitespace
- id: check-added-large-files
- id: check-ast
- id: check-docstring-first
- id: debug-statements
language_version: python3
- id: check-executables-have-shebangs