From dfae161eab911e2cef5ae4e6dc1268e13e173d48 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Tue, 6 Dec 2022 00:17:52 +0100 Subject: [PATCH] Add a config for pre-commit.ci --- .pre-commit-config.yaml | 59 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 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 0000000..363e9aa --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,59 @@ +--- +ci: + autoupdate_schedule: quarterly + +repos: +- repo: https://github.com/Lucas-C/pre-commit-hooks.git + rev: v1.3.1 + hooks: + - id: remove-tabs + +- repo: https://github.com/python-jsonschema/check-jsonschema.git + rev: 0.18.3 + hooks: + - id: check-github-workflows + - id: check-jsonschema + name: Check GitHub Workflows set timeout-minutes + args: + - --builtin-schema + - github-workflows-require-timeout + files: ^\.github/workflows/[^/]+$ + types: + - yaml + - id: check-readthedocs + +- repo: https://github.com/pre-commit/pre-commit-hooks.git + rev: v4.3.0 + hooks: + # Side-effects: + - id: end-of-file-fixer + - id: trailing-whitespace + - id: mixed-line-ending + # Non-modifying checks: + - id: check-added-large-files + - id: check-byte-order-marker + - id: check-case-conflict + - id: check-executables-have-shebangs + - id: check-merge-conflict + - id: check-json + - id: check-symlinks + - id: check-yaml + - id: detect-private-key + +- repo: https://github.com/codespell-project/codespell + rev: v2.2.1 + hooks: + - id: codespell + +- repo: https://github.com/adrienverge/yamllint.git + rev: v1.28.0 + hooks: + - id: yamllint + files: \.(yaml|yml)$ + types: + - file + - yaml + args: + - --strict + +...