From d41119ed04b4b48e0d5db74d7a4ee29192d9e6b1 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Thu, 17 May 2018 22:55:14 +0200 Subject: [PATCH] add the config --- .pre-commit-config.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 000000000..146ac223d --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,20 @@ + +repos: +- repo: https://github.com/ambv/black + rev: 18.4a4 + hooks: + - id: black + args: [--safe, --quiet] + python_version: python3.6 +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v1.2.3 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-yaml + - id: debug-statements + - id: flake8 +- repo: https://github.com/asottile/pyupgrade + rev: v1.2.0 + hooks: + - id: pyupgrade