From d7314fe9a03144ed3b33fc7ee512bb0a56233cd6 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 6 May 2022 20:01:43 +0100 Subject: [PATCH] Enable black in pep8 tox job, pre-commit Signed-off-by: Stephen Finucane --- .pre-commit-config.yaml | 46 ++++++++++++++++++++++------------------- pyproject.toml | 3 +++ tox.ini | 8 +++++-- 3 files changed, 34 insertions(+), 23 deletions(-) create mode 100644 pyproject.toml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9198b7d6..581c1f1c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,24 +3,28 @@ default_language_version: # force all unspecified python hooks to run python3 python: python3 repos: -- repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.2.0 - hooks: - - id: check-executables-have-shebangs - - id: check-merge-conflict - - id: check-yaml - - id: end-of-file-fixer - exclude: (.*\.mbox)|(.*\.css)|(.*\.json)|(.*\.js)|(.*\.svg)|(.*/mails/.*-subject\.txt) - - id: trailing-whitespace - exclude: (.*\.mbox)|(.*\.svg) -- repo: https://gitlab.com/pycqa/flake8 - rev: 3.9.2 - hooks: - - id: flake8 -- repo: https://github.com/Lucas-C/pre-commit-hooks - rev: v1.1.13 - hooks: - - id: remove-tabs - exclude: (.*\.mbox)|(.*\.svg)|(.*\.sql)|(.*\.conf) - - id: remove-crlf - exclude: (.*\.mbox)|(.*\.svg) + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.2.0 + hooks: + - id: check-executables-have-shebangs + - id: check-merge-conflict + - id: check-yaml + - id: end-of-file-fixer + exclude: (.*\.mbox)|(.*\.css)|(.*\.json)|(.*\.js)|(.*\.svg)|(.*/mails/.*-subject\.txt) + - id: trailing-whitespace + exclude: (.*\.mbox)|(.*\.svg) + - repo: https://gitlab.com/pycqa/flake8 + rev: 3.9.2 + hooks: + - id: flake8 + - repo: https://github.com/psf/black + rev: 22.3.0 + hooks: + - id: black + - repo: https://github.com/Lucas-C/pre-commit-hooks + rev: v1.1.13 + hooks: + - id: remove-tabs + exclude: (.*\.mbox)|(.*\.svg)|(.*\.sql)|(.*\.conf) + - id: remove-crlf + exclude: (.*\.mbox)|(.*\.svg) diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..d3728bae --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[tool.black] +line-length = 79 +skip-string-normalization = true diff --git a/tox.ini b/tox.ini index f687df73..d6615835 100644 --- a/tox.ini +++ b/tox.ini @@ -36,8 +36,12 @@ commands = -name \*.sh -print | xargs bashate -i E006" [testenv:pep8] -deps = flake8 -commands = flake8 {posargs:patchwork manage.py} +deps = + black + flake8 +commands = + black --check --quiet {posargs:patchwork manage.py} + flake8 {posargs:patchwork manage.py} [flake8] # Some rules are ignored as their use makes the code more difficult to read: -- 2.47.3