scripts/.pre-commit-config.yaml

113 lines
3.1 KiB
YAML
Raw Normal View History

# @format
# SPDX-FileCopyrightText: 2023 Aminda Suomalainen <suomalainen+git@mikaela.info>
#
# SPDX-License-Identifier: CC0-1.0
# See https://pre-commit.com for more information
# See https://pre-commit.ci for more information
ci:
# 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
skip: [pnpm-install-dev, prettier, pylint]
# use pypy3 for python
2024-07-12 07:48:58 +02:00
#default_language_version:
# python: pypy3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2024-04-07 19:06:05 +02:00
rev: v4.6.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
2023-05-18 09:28:18 +02:00
- id: check-yaml
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: destroyed-symlinks
- id: detect-private-key
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: trailing-whitespace
args: ["--markdown-linebreak-ext", "md,markdown"]
exclude_types: [svg, tsv]
- id: check-docstring-first
- id: check-json
- id: check-merge-conflict
- id: check-toml
#- id: check-xml
- id: debug-statements
- id: mixed-line-ending
# .gitattributes is trusted to handle this
args: [--fix=no]
- id: pretty-format-json
args: [--autofix, --no-ensure-ascii]
- repo: https://github.com/pre-commit-ci/pre-commit-ci-config
rev: v1.6.1
hooks:
- id: check-pre-commit-ci-config
- 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]
2023-05-18 09:06:16 +02:00
- repo: https://github.com/pre-commit/mirrors-mypy
2024-07-05 18:29:05 +02:00
rev: "v1.10.1"
2023-05-18 09:06:16 +02:00
hooks:
- id: mypy
additional_dependencies: [types-tabulate]
- repo: https://github.com/asottile/pyupgrade
2024-06-11 20:02:37 +02:00
rev: v3.16.0
hooks:
- id: pyupgrade
args: [--py310-plus]
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
hooks:
- id: add-trailing-comma
2024-07-12 09:14:44 +02:00
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
name: isort (python)
2023-05-18 09:06:16 +02:00
- repo: https://github.com/psf/black
rev: 24.4.2
2023-05-18 09:06:16 +02:00
hooks:
- id: black
#- id: black-jupyter
2024-06-06 19:57:42 +02:00
# - repo: https://github.com/scop/pre-commit-shfmt
# rev: v3.8.0-1
# hooks:
# - id: shfmt
2023-05-18 09:06:16 +02:00
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint
2023-05-18 09:06:16 +02:00
language: system
types_or: [python, pyi]
- id: pnpm-install-dev
name: Install pnpm dev dependencies
entry: corepack pnpm install -D
language: system
always_run: true
#verbose: true
pass_filenames: false
- id: prettier
name: prettier
entry: corepack pnpm exec prettier --cache --ignore-unknown --write
language: system
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
rev: "2.7.3"
hooks:
- id: editorconfig-checker
alias: ec
args: [-disable-max-line-length]