Skip to content

Commit

Permalink
Add a config for pre-commit.ci
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Dec 5, 2022
1 parent b3f93a1 commit dfae161
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .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

...

0 comments on commit dfae161

Please sign in to comment.