coretk - added to pre-commit

This commit is contained in:
Blake Harnden 2019-09-18 11:39:48 -07:00
parent 2f8935b4c9
commit 372a690af9
3 changed files with 119 additions and 1 deletions

View file

@ -21,3 +21,24 @@ repos:
language: system
entry: bash -c 'cd daemon && pipenv run flake8'
types: [python]
- id: isort-tk
name: coretk-isort
stages: [commit]
language: system
entry: bash -c 'cd coretk && pipenv run isort --atomic -y'
types: [python]
- id: black-tk
name: coretk-black
stages: [commit]
language: system
entry: bash -c 'cd coretk && pipenv run black .'
types: [python]
- id: flake8-tk
name: coretk-flake8
stages: [commit]
language: system
entry: bash -c 'cd coretk && pipenv run flake8'
types: [python]