0.2.3 #99

Merged
sonny merged 112 commits from development into master 2020-05-23 16:58:42 +02:00
Showing only changes of commit 752ba62aee - Show all commits

39
.pre-commit-config.yaml Normal file
View file

@ -0,0 +1,39 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
default_language_version:
python: python3.7
repos:
- repo: local
hooks:
- id: autoflake
name: autoflake
entry: autoflake
language: system
types: [python]
args: ["--in-place", "--remove-unused-variables"]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: pretty-format-json
- repo: https://github.com/psf/black
rev: 19.3b0
hooks:
- id: black
args: [--line-length=90]
- repo: https://github.com/timothycrosley/isort
rev: 4.3.21-2
hooks:
- id: isort
- repo: https://github.com/prettier/prettier
rev: 1.18.2
hooks:
- id: prettier