From de7424dbe02478dac2e10fb7826539e4a85a587b Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Thu, 7 Jan 2021 20:18:42 +0200 Subject: [PATCH] Use a common pre-commit config. The Python snippet. --- .pre-commit-config.yaml | 86 +++++++++++++++++++++++++---------------- 1 file changed, 53 insertions(+), 33 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d4f7976..5f769c0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,67 +1,87 @@ -# vim:ff=unix ts=2 sw=2 ai expandtab --- repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v2.2.3 + rev: v3.4.0 hooks: - - id: check-added-large-files - id: check-executables-have-shebangs - id: check-merge-conflict - - id: detect-private-key + - id: check-toml + files: Pipfile - id: trailing-whitespace + + - repo: https://github.com/Yelp/detect-secrets + rev: v0.14.3 + hooks: + - id: detect-secrets + + - repo: https://github.com/adrienverge/yamllint + rev: v1.25.0 + hooks: + - id: yamllint + + - repo: https://github.com/amperser/proselint/ + rev: 0.10.2 + hooks: + - id: proselint + types: [plain-text] + exclude: LICENSE + - repo: https://github.com/ambv/black - rev: 18.9b0 + rev: 20.8b1 hooks: - id: black args: - | --line-length=79 + - repo: https://github.com/Lucas-C/pre-commit-hooks-markup - rev: v1.0.0 + rev: v1.0.1 hooks: - id: rst-linter + + - repo: https://github.com/myint/rstcheck.git + rev: master + hooks: + - id: rstcheck + - repo: https://github.com/PyCQA/prospector - rev: 1.1.6.4 + rev: 1.3.1 hooks: - id: prospector args: - |- - --max-line-length=79 + --max-line-length=79 + - |- + --with-tool=pyroma + - |- + --with-tool=bandit + - |- + --without-tool=pep257 - |- - --tool=pyroma + --doc-warnings - |- - --tool=dodgy + --test-warnings + - |- + --full-pep8 + - |- + --strictness=high + - |- + --no-autodetect additional_dependencies: + - bandit - pyroma - - dodgy - - repo: https://gitlab.com/pycqa/flake8 - rev: 3.7.7 + + - repo: https://gitlab.com/pycqa/flake8.git + rev: 3.8.4 hooks: - id: flake8 args: - |- - --max-line-length=79 + --doctests additional_dependencies: - flake8-bugbear - - repo: https://github.com/pre-commit/mirrors-pylint - rev: v2.3.1 - hooks: - - id: pylint - - repo: https://github.com/adrienverge/yamllint - rev: v1.16.0 - hooks: - - id: yamllint - - repo: https://github.com/PyCQA/bandit - rev: 1.6.1 - hooks: - - id: bandit - - repo: https://github.com/amperser/proselint/ - rev: 0.10.2 - hooks: - - id: proselint - types: [plain-text] - exclude: LICENSE|requirements + - repo: https://github.com/mgedmin/check-manifest - rev: "0.39" + rev: '0.45' hooks: - id: check-manifest -- GitLab