mirror of
https://gitea.blesmrt.net/mikaela/.profile.git
synced 2024-11-17 08:49:23 +01:00
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
# @format
|
|
|
|
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: [prettier]
|
|
|
|
default_language_version:
|
|
python: pypy3
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.6.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
args: ["--markdown-linebreak-ext", "md"]
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
- id: check-case-conflict
|
|
- id: check-executables-have-shebangs
|
|
- id: check-shebang-scripts-are-executable
|
|
- id: destroyed-symlinks
|
|
- id: detect-private-key
|
|
- id: fix-byte-order-marker
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: prettier
|
|
name: prettier
|
|
entry: 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]
|