1
0
mirror of https://github.com/enpaul/kodak.git synced 2025-12-20 01:22:34 +00:00

Initial commit

This commit is contained in:
2020-09-16 03:41:53 -04:00
commit 3034074de0
15 changed files with 2345 additions and 0 deletions

28
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,28 @@
---
repos:
- repo: https://github.com/psf/black
rev: master
hooks:
- id: black
language_version: python3.7
- repo: https://github.com/asottile/blacken-docs
rev: v0.5.0
hooks:
- id: blacken-docs
additional_dependencies: [black]
language_version: python3.7
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
hooks:
- id: end-of-file-fixer
- id: fix-encoding-pragma
args: [--remove]
- id: trailing-whitespace
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.8.0
hooks:
- id: reorder-python-imports
language_version: python3