shell-things/.pre-commit-config.yaml

95 lines
2.7 KiB
YAML
Raw Normal View History

ci:
# Attempts to use networking and fails at name resolution, local hook
skip: [bundler-audit, pylint]
# Forĝejo/Gitea mirrors will autoclose pull requests. This should decrease
# the frequency of unnecessary PRs.
# https://github.com/pre-commit-ci/issues/issues/83
autoupdate_schedule: quarterly
repos:
2023-02-21 16:52:47 +01:00
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-added-large-files
2023-02-21 16:52:47 +01:00
- id: check-case-conflict
- id: check-yaml
2023-02-21 16:52:47 +01:00
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: destroyed-symlinks
- id: detect-private-key
- id: end-of-file-fixer
2023-02-21 16:52:47 +01:00
- id: fix-byte-order-marker
- id: trailing-whitespace
# Let's not touch LICENSE files or reuse.software directory
exclude: ^LICENSES\/.*|LICENSE$
# File types depending on trailing whitespace. Use identify-cli
exclude_types: [tsv, markdown]
# Markdown Table of Contents generation.
- repo: https://github.com/thlorenz/doctoc
rev: v2.2.0
hooks:
- id: doctoc
# https://github.com/Mikaela/gist/blob/master/doctoc.txt
args: [--update-only, --notitle]
# Python type checking
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.3.0"
hooks:
- id: mypy
# GitHub Actions etc. configuration validity checking
- repo: https://github.com/python-jsonschema/check-jsonschema
2023-05-06 17:10:19 +02:00
rev: 0.23.0
hooks:
- id: check-dependabot
- id: check-github-actions
- id: check-github-workflows
- id: check-gitlab-ci
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: bundler-audit
# https://github.com/jumanjihouse/pre-commit-hooks/issues/111
#- id: check-mailmap
# Easierish licensing when attempting reuse compliancy
#- repo: https://github.com/fsfe/reuse-tool
# rev: v1.1.2
# hooks:
# - id: reuse
# prettier & editorconfig checker should probably be ran last
# prettier
2023-02-21 16:52:47 +01:00
- repo: https://github.com/pre-commit/mirrors-prettier
2023-05-02 08:43:53 +02:00
rev: "v3.0.0-alpha.9-for-vscode"
2023-02-21 16:52:47 +01:00
hooks:
- id: prettier
exclude_types: [python, pyi, jupyter]
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
#- id: black-jupyter
# .editorconfig validity checking
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
rev: "2.7.1"
hooks:
- id: editorconfig-checker
alias: ec
# I don't actually care about line lengths as more than a guideline
args: [-disable-max-line-length]
# Python linter
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint
language: system
types_or: [python, pyi]