mirror of
https://gitea.blesmrt.net/mikaela/gist.git
synced 2025-08-19 12:57:22 +02:00
Compare commits
4 Commits
c938cf1ef9
...
d369032d13
Author | SHA1 | Date | |
---|---|---|---|
d369032d13 | |||
56f650d549 | |||
dd174f7b46 | |||
9013070168 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
*~
|
*~
|
||||||
.~*#
|
.~*#
|
||||||
|
.cache/**
|
||||||
|
|
||||||
# ---> TeX
|
# ---> TeX
|
||||||
## Core latex/pdflatex auxiliary files:
|
## Core latex/pdflatex auxiliary files:
|
||||||
|
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# Based on https://pre-commit.com
|
||||||
|
image: python:alpine
|
||||||
|
gitlab-ci-pre-commit:
|
||||||
|
stage: build
|
||||||
|
before_script:
|
||||||
|
- apk add --no-cache git gcc musl-dev go
|
||||||
|
- pip install pre-commit
|
||||||
|
script:
|
||||||
|
- pre-commit run --all-files --show-diff-on-failure
|
||||||
|
variables:
|
||||||
|
# Remember to gitignore .cache/**
|
||||||
|
PRE_COMMIT_HOME: ${CI_PROJECT_DIR}/.cache/pre-commit
|
||||||
|
TERM: dumb
|
||||||
|
# TODO: How to LaTeX on Alpine? texmf-dist texlive packages aren't enough
|
||||||
|
# for the artikel3 or similar templates.
|
||||||
|
SKIP: latexmk
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- ${PRE_COMMIT_HOME}
|
@ -6,6 +6,7 @@ ci:
|
|||||||
# https://github.com/pre-commit-ci/issues/issues/83
|
# https://github.com/pre-commit-ci/issues/issues/83
|
||||||
autoupdate_schedule: quarterly
|
autoupdate_schedule: quarterly
|
||||||
skip: [latexmk]
|
skip: [latexmk]
|
||||||
|
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v4.4.0
|
rev: v4.4.0
|
||||||
@ -25,28 +26,41 @@ repos:
|
|||||||
exclude: ^LICENSES\/.*|LICENSE|associations\/.*|.*\.conf$$
|
exclude: ^LICENSES\/.*|LICENSE|associations\/.*|.*\.conf$$
|
||||||
# File types depending on trailing whitespace. Use identify-cli
|
# File types depending on trailing whitespace. Use identify-cli
|
||||||
exclude_types: [tsv, markdown]
|
exclude_types: [tsv, markdown]
|
||||||
|
|
||||||
- repo: https://github.com/thlorenz/doctoc
|
- repo: https://github.com/thlorenz/doctoc
|
||||||
rev: v2.2.0
|
rev: v2.2.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: doctoc
|
- id: doctoc
|
||||||
args: [--update-only, --notitle]
|
args: [--update-only, --notitle]
|
||||||
|
|
||||||
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
||||||
|
rev: 0.23.0
|
||||||
|
hooks:
|
||||||
|
#- id: check-dependabot
|
||||||
|
#- id: check-github-actions
|
||||||
|
#- id: check-github-workflows
|
||||||
|
- id: check-gitlab-ci
|
||||||
|
|
||||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||||
rev: "v3.0.0-alpha.9-for-vscode"
|
rev: "v3.0.0-alpha.9-for-vscode"
|
||||||
hooks:
|
hooks:
|
||||||
- id: prettier
|
- id: prettier
|
||||||
additional_dependencies:
|
additional_dependencies:
|
||||||
["prettier@2.8.8", "@prettier/plugin-xml@2.2.0"]
|
["prettier@2.8.8", "@prettier/plugin-xml@2.2.0"]
|
||||||
|
|
||||||
- repo: https://github.com/scop/pre-commit-shfmt
|
- repo: https://github.com/scop/pre-commit-shfmt
|
||||||
rev: v3.6.0-2
|
rev: v3.6.0-2
|
||||||
hooks:
|
hooks:
|
||||||
- id: shfmt
|
- id: shfmt
|
||||||
#- id: shfmt-docker
|
#- id: shfmt-docker
|
||||||
|
|
||||||
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
||||||
rev: "2.7.1"
|
rev: "2.7.1"
|
||||||
hooks:
|
hooks:
|
||||||
- id: editorconfig-checker
|
- id: editorconfig-checker
|
||||||
alias: ec
|
alias: ec
|
||||||
args: [-disable-max-line-length]
|
args: [-disable-max-line-length]
|
||||||
|
|
||||||
- repo: local
|
- repo: local
|
||||||
hooks:
|
hooks:
|
||||||
- id: latexmk
|
- id: latexmk
|
||||||
|
Loading…
x
Reference in New Issue
Block a user