2024-06-19 07:40:47 +02:00
|
|
|
# @format
|
|
|
|
|
2023-08-31 14:46:14 +02:00
|
|
|
# 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
|
2023-05-09 10:01:13 +02:00
|
|
|
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
|
2024-07-04 05:53:44 +02:00
|
|
|
skip: [pnpm-install-dev, prettier, pylint]
|
2023-05-09 10:01:13 +02:00
|
|
|
|
2023-10-01 08:55:35 +02:00
|
|
|
# use pypy3 for python
|
2024-07-12 07:48:58 +02:00
|
|
|
#default_language_version:
|
|
|
|
# python: pypy3
|
2023-09-27 21:16:10 +02:00
|
|
|
|
2023-02-22 12:07:21 +01:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2024-04-07 19:06:05 +02:00
|
|
|
rev: v4.6.0
|
2023-02-22 12:07:21 +01:00
|
|
|
hooks:
|
2023-02-24 18:40:42 +01:00
|
|
|
- id: check-added-large-files
|
2023-02-22 12:07:21 +01:00
|
|
|
- id: check-case-conflict
|
2023-05-18 09:28:18 +02:00
|
|
|
- id: check-yaml
|
2023-02-22 12:07:21 +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
|
|
|
|
- id: fix-byte-order-marker
|
2023-05-08 19:01:37 +02:00
|
|
|
- id: trailing-whitespace
|
2024-05-16 20:12:37 +02:00
|
|
|
args: ["--markdown-linebreak-ext", "md,markdown"]
|
|
|
|
exclude_types: [svg, tsv]
|
2023-10-10 09:15:08 +02:00
|
|
|
- id: check-docstring-first
|
2024-07-09 08:45:16 +02:00
|
|
|
- id: check-json
|
2023-10-10 09:15:08 +02:00
|
|
|
- id: check-merge-conflict
|
2024-07-12 09:04:00 +02:00
|
|
|
- id: check-toml
|
2023-10-10 09:15:08 +02:00
|
|
|
#- id: check-xml
|
|
|
|
- id: debug-statements
|
|
|
|
- id: mixed-line-ending
|
|
|
|
# .gitattributes is trusted to handle this
|
|
|
|
args: [--fix=no]
|
2024-07-09 08:45:16 +02:00
|
|
|
- id: pretty-format-json
|
|
|
|
args: [--autofix, --no-ensure-ascii]
|
2023-10-10 09:32:41 +02:00
|
|
|
- repo: https://github.com/pre-commit-ci/pre-commit-ci-config
|
|
|
|
rev: v1.6.1
|
|
|
|
hooks:
|
|
|
|
- id: check-pre-commit-ci-config
|
2023-04-06 10:46:54 +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]
|
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
|
2024-07-12 08:07:50 +02:00
|
|
|
additional_dependencies: [types-tabulate]
|
2023-10-10 09:15:08 +02:00
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
2024-06-11 20:02:37 +02:00
|
|
|
rev: v3.16.0
|
2023-10-10 09:15:08 +02:00
|
|
|
hooks:
|
|
|
|
- id: pyupgrade
|
2024-07-12 09:04:00 +02:00
|
|
|
args: [--py310-plus]
|
2023-10-10 09:15:08 +02:00
|
|
|
- repo: https://github.com/asottile/add-trailing-comma
|
|
|
|
rev: v3.1.0
|
|
|
|
hooks:
|
|
|
|
- id: add-trailing-comma
|
2024-07-04 05:53:44 +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-04-27 11:16:12 +02:00
|
|
|
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
|
2024-07-04 05:53:44 +02:00
|
|
|
|
2023-05-18 09:06:16 +02:00
|
|
|
- repo: local
|
|
|
|
hooks:
|
|
|
|
- id: pylint
|
|
|
|
name: pylint
|
2024-07-12 09:04:00 +02:00
|
|
|
entry: pylint
|
2023-05-18 09:06:16 +02:00
|
|
|
language: system
|
|
|
|
types_or: [python, pyi]
|
2024-07-04 05:53:44 +02:00
|
|
|
- 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]
|