scripts/.pre-commit-config.yaml

92 lines
2.4 KiB
YAML
Raw Normal View History

2024-07-12 09:17:23 +02:00
# SPDX-FileCopyrightText: 2024 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:
autoupdate_schedule: quarterly
2024-07-16 11:24:13 +02:00
skip: [prettier, pylint]
default_language_version:
node: "lts"
# Remember .python-version and pyproject.toml !
2024-09-20 11:15:30 +02:00
python: "3.13"
ruby: ".ruby-version"
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
2024-07-12 09:58:51 +02:00
args: [--fix=lf]
- id: pretty-format-json
args: [--autofix, --no-ensure-ascii]
2024-07-12 09:17:23 +02:00
- repo: https://github.com/pre-commit-ci/pre-commit-ci-config
rev: v1.6.1
hooks:
- id: check-pre-commit-ci-config
2024-07-12 09:17:23 +02:00
- 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]
2024-07-12 09:17:23 +02:00
2023-05-18 09:06:16 +02:00
- repo: https://github.com/pre-commit/mirrors-mypy
2024-08-28 09:03:48 +02:00
rev: "v1.11.2"
2023-05-18 09:06:16 +02:00
hooks:
- id: mypy
additional_dependencies: [types-tabulate]
2024-07-12 09:17:23 +02:00
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
2024-08-04 07:51:19 +02:00
rev: 24.8.0
2023-05-18 09:06:16 +02:00
hooks:
- id: black
2023-05-18 09:06:16 +02:00
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint --exit-zero
verbose: true
2023-05-18 09:06:16 +02:00
language: system
types_or: [python, pyi]
- id: prettier
name: prettier
2024-07-16 11:24:13 +02:00
entry: corepack pnpx prettier --cache --ignore-unknown --write
language: system
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
2024-08-28 09:03:48 +02:00
rev: "3.0.3"
hooks:
- id: editorconfig-checker
alias: ec
args: [-disable-max-line-length]