2023-05-20 12:19:05 +02:00
|
|
|
# See https://pre-commit.com for more information
|
|
|
|
# See https://pre-commit.ci for more information
|
2023-05-09 10:05:16 +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
|
2023-06-04 10:52:42 +02:00
|
|
|
skip: [latexmk, exiftool]
|
2023-05-22 17:41:06 +02:00
|
|
|
|
2023-10-01 08:36:10 +02:00
|
|
|
# Use pypy3 for python hooks instead of system default
|
2023-09-28 09:43:05 +02:00
|
|
|
default_language_version:
|
2023-10-01 08:36:10 +02:00
|
|
|
python: pypy3
|
2023-09-28 09:43:05 +02:00
|
|
|
|
2023-02-26 18:01:13 +01:00
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
2023-10-10 09:49:50 +02:00
|
|
|
rev: v4.5.0
|
2023-02-26 18:01:13 +01:00
|
|
|
hooks:
|
|
|
|
- id: check-added-large-files
|
|
|
|
- id: check-case-conflict
|
2023-05-18 11:41:11 +02:00
|
|
|
- id: check-yaml
|
2023-02-26 18:01:13 +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-07 17:28:59 +02:00
|
|
|
- id: trailing-whitespace
|
2023-10-16 08:47:44 +02:00
|
|
|
args: ["--markdown-linebreak-ext", "md,markdown"]
|
2023-05-07 17:28:59 +02:00
|
|
|
# I don't want to touch licenses or past association logs or Limnoria
|
|
|
|
# configuration exports.
|
|
|
|
exclude: ^LICENSES\/.*|LICENSE|associations\/.*|.*\.conf$$
|
|
|
|
# File types depending on trailing whitespace. Use identify-cli
|
2023-10-10 09:49:50 +02:00
|
|
|
exclude_types:
|
2023-10-16 08:47:44 +02:00
|
|
|
[svg, tsv]
|
2023-10-10 09:49:50 +02:00
|
|
|
#- id: check-docstring-first
|
2023-10-22 19:25:57 +02:00
|
|
|
- id: check-json
|
2023-10-10 09:49:50 +02:00
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: check-toml
|
|
|
|
- id: check-xml
|
|
|
|
#- id: debug-statements
|
|
|
|
#- id: fix-encoding-pragma
|
|
|
|
#args: [--remove]
|
|
|
|
- id: mixed-line-ending
|
2023-10-22 19:17:42 +02:00
|
|
|
args: [--fix=auto]
|
|
|
|
- id: pretty-format-json
|
2023-10-10 09:49:50 +02:00
|
|
|
args:
|
2023-10-22 19:17:42 +02:00
|
|
|
[--autofix, --no-ensure-ascii, --no-sort-keys]
|
2023-10-10 09:49:50 +02:00
|
|
|
#- id: requirements-txt-fixer
|
|
|
|
- repo: https://github.com/pre-commit-ci/pre-commit-ci-config
|
|
|
|
rev: v1.6.1
|
|
|
|
hooks:
|
|
|
|
- id: check-pre-commit-ci-config
|
2023-05-22 17:41:06 +02:00
|
|
|
|
2023-04-05 11:24:06 +02:00
|
|
|
- repo: https://github.com/thlorenz/doctoc
|
|
|
|
rev: v2.2.0
|
|
|
|
hooks:
|
|
|
|
- id: doctoc
|
2023-05-13 08:26:33 +02:00
|
|
|
args: [--update-only, --notitle]
|
2023-05-22 17:41:06 +02:00
|
|
|
|
2023-05-22 17:39:12 +02:00
|
|
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
2023-12-14 14:00:34 +01:00
|
|
|
rev: 0.27.3
|
2023-05-22 17:39:12 +02:00
|
|
|
hooks:
|
|
|
|
#- id: check-dependabot
|
|
|
|
#- id: check-github-actions
|
|
|
|
#- id: check-github-workflows
|
|
|
|
- id: check-gitlab-ci
|
2023-05-22 17:41:06 +02:00
|
|
|
|
2023-02-26 18:01:13 +01:00
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2023-12-24 19:50:00 +01:00
|
|
|
rev: "v4.0.0-alpha.8"
|
2023-02-26 18:01:13 +01:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
2023-10-22 19:25:06 +02:00
|
|
|
exclude_types: [json]
|
2023-08-28 19:44:57 +02:00
|
|
|
additional_dependencies: [
|
|
|
|
# https://www.npmjs.com/package/prettier
|
2023-12-14 14:00:34 +01:00
|
|
|
"prettier@3.1.1",
|
2023-08-28 19:44:57 +02:00
|
|
|
# https://www.npmjs.com/package/@prettier/plugin-xml
|
2023-11-13 17:31:47 +01:00
|
|
|
"@prettier/plugin-xml@3.2.2",
|
2023-08-28 19:44:57 +02:00
|
|
|
# https://www.npmjs.com/package/prettier-plugin-toml
|
2023-12-06 17:42:13 +01:00
|
|
|
"prettier-plugin-toml@2.0.1",
|
2023-08-28 19:44:57 +02:00
|
|
|
]
|
2023-05-22 17:41:06 +02:00
|
|
|
|
2023-05-18 11:41:11 +02:00
|
|
|
- repo: https://github.com/scop/pre-commit-shfmt
|
2023-12-06 17:42:13 +01:00
|
|
|
rev: v3.7.0-4
|
2023-05-18 11:41:11 +02:00
|
|
|
hooks:
|
|
|
|
- id: shfmt
|
|
|
|
#- id: shfmt-docker
|
2023-05-22 17:41:06 +02:00
|
|
|
|
2023-02-26 18:01:13 +01:00
|
|
|
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
2023-10-13 12:45:27 +02:00
|
|
|
rev: "2.7.3"
|
2023-02-26 18:01:13 +01:00
|
|
|
hooks:
|
|
|
|
- id: editorconfig-checker
|
|
|
|
alias: ec
|
2023-04-04 11:50:24 +02:00
|
|
|
args: [-disable-max-line-length]
|
2023-05-22 17:41:06 +02:00
|
|
|
|
2023-05-20 12:19:05 +02:00
|
|
|
- repo: local
|
|
|
|
hooks:
|
|
|
|
- id: latexmk
|
|
|
|
name: latexmk
|
2023-10-13 12:48:06 +02:00
|
|
|
entry: latexmk -quiet -f
|
2023-05-20 12:19:05 +02:00
|
|
|
language: system
|
|
|
|
types: [text, tex]
|
|
|
|
# I have no idea where latexmk wants the template
|
|
|
|
exclude: LaTeX\/standardi-asiakirja.tex
|
2023-06-04 10:52:42 +02:00
|
|
|
|
|
|
|
# Fedora: perl-Image-ExifTool
|
|
|
|
- repo: local
|
|
|
|
hooks:
|
|
|
|
- id: exiftool
|
|
|
|
name: Remove all EXIF metadata using exiftool
|
|
|
|
entry: exiftool -all=
|
|
|
|
language: system
|
|
|
|
types: [image]
|