mirror of
https://gitea.blesmrt.net/mikaela/gist.git
synced 2025-08-17 11:47:41 +02:00
Compare commits
3 Commits
2414304e08
...
9b71dfa524
Author | SHA1 | Date | |
---|---|---|---|
9b71dfa524 | |||
0b19879aac | |||
6132460a7a |
9
.gitignore
vendored
9
.gitignore
vendored
@ -4,6 +4,7 @@
|
|||||||
*_original
|
*_original
|
||||||
browsers
|
browsers
|
||||||
node_modules
|
node_modules
|
||||||
|
pnpm-lock.yaml
|
||||||
|
|
||||||
# ---> TeX
|
# ---> TeX
|
||||||
## Core latex/pdflatex auxiliary files:
|
## Core latex/pdflatex auxiliary files:
|
||||||
@ -42,10 +43,10 @@ node_modules
|
|||||||
|
|
||||||
## Build tool auxiliary files:
|
## Build tool auxiliary files:
|
||||||
*.fdb_latexmk
|
*.fdb_latexmk
|
||||||
*.synctex
|
*.synctex*
|
||||||
*.synctex(busy)
|
#*.synctex(busy)
|
||||||
*.synctex.gz
|
#*.synctex.gz
|
||||||
*.synctex.gz(busy)
|
#*.synctex.gz(busy)
|
||||||
*.pdfsync
|
*.pdfsync
|
||||||
|
|
||||||
## Build tool directories for auxiliary files
|
## Build tool directories for auxiliary files
|
||||||
|
@ -7,7 +7,7 @@ ci:
|
|||||||
# the frequency of unnecessary PRs.
|
# the frequency of unnecessary PRs.
|
||||||
# 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, exiftool, prettier]
|
skip: [latexmk, exiftool, install-dev-deps, prettier]
|
||||||
|
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
@ -71,21 +71,18 @@ repos:
|
|||||||
|
|
||||||
- repo: local
|
- repo: local
|
||||||
hooks:
|
hooks:
|
||||||
|
- id: install-dev-deps
|
||||||
|
name: Install pnpm dev dependencies
|
||||||
|
entry: corepack pnpm install -D
|
||||||
|
language: system
|
||||||
|
always_run: true
|
||||||
|
verbose: true
|
||||||
|
pass_filenames: false
|
||||||
- id: prettier
|
- id: prettier
|
||||||
name: prettier
|
name: prettier
|
||||||
entry: pnpm exec prettier --cache --ignore-unknown --write
|
entry: corepack pnpm exec prettier --cache --ignore-unknown --write
|
||||||
language: system
|
language: system
|
||||||
exclude_types: [json]
|
exclude_types: [json]
|
||||||
|
|
||||||
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
|
||||||
rev: "2.7.3"
|
|
||||||
hooks:
|
|
||||||
- id: editorconfig-checker
|
|
||||||
alias: ec
|
|
||||||
args: [-disable-max-line-length]
|
|
||||||
|
|
||||||
- repo: local
|
|
||||||
hooks:
|
|
||||||
- id: latexmk
|
- id: latexmk
|
||||||
name: latexmk
|
name: latexmk
|
||||||
entry: latexmk -quiet -f
|
entry: latexmk -quiet -f
|
||||||
@ -93,12 +90,16 @@ repos:
|
|||||||
types: [text, tex]
|
types: [text, tex]
|
||||||
# I have no idea where latexmk wants the template
|
# I have no idea where latexmk wants the template
|
||||||
exclude: LaTeX\/standardi-asiakirja.tex
|
exclude: LaTeX\/standardi-asiakirja.tex
|
||||||
|
# Fedora: perl-Image-ExifTool
|
||||||
# Fedora: perl-Image-ExifTool
|
|
||||||
- repo: local
|
|
||||||
hooks:
|
|
||||||
- id: exiftool
|
- id: exiftool
|
||||||
name: Remove all EXIF metadata using exiftool
|
name: Remove all EXIF metadata using exiftool
|
||||||
entry: exiftool -all=
|
entry: exiftool -all=
|
||||||
language: system
|
language: system
|
||||||
types: [image]
|
types: [image]
|
||||||
|
|
||||||
|
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
||||||
|
rev: "2.7.3"
|
||||||
|
hooks:
|
||||||
|
- id: editorconfig-checker
|
||||||
|
alias: ec
|
||||||
|
args: [-disable-max-line-length]
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit c7b5995d5ae3f572f839124fced396e5da786003
|
Subproject commit 25d8ade676f8b3aac67c34adc26d3043e0bed2ce
|
@ -1 +1 @@
|
|||||||
Subproject commit b2731acc5bc6a8439764f8eff32238d7bbadcdbb
|
Subproject commit 17ec678a73a8290ccdc609b7427f8b01075bd79e
|
@ -4,5 +4,6 @@
|
|||||||
"prettier": "3.3.2",
|
"prettier": "3.3.2",
|
||||||
"prettier-plugin-sh": "0.14.0",
|
"prettier-plugin-sh": "0.14.0",
|
||||||
"prettier-plugin-toml": "2.0.1"
|
"prettier-plugin-toml": "2.0.1"
|
||||||
}
|
},
|
||||||
|
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
|
||||||
}
|
}
|
||||||
|
150
pnpm-lock.yaml
generated
150
pnpm-lock.yaml
generated
@ -1,150 +0,0 @@
|
|||||||
# @format
|
|
||||||
|
|
||||||
lockfileVersion: "9.0"
|
|
||||||
|
|
||||||
settings:
|
|
||||||
autoInstallPeers: true
|
|
||||||
excludeLinksFromLockfile: false
|
|
||||||
|
|
||||||
importers:
|
|
||||||
.:
|
|
||||||
devDependencies:
|
|
||||||
"@prettier/plugin-xml":
|
|
||||||
specifier: 3.4.1
|
|
||||||
version: 3.4.1(prettier@3.3.2)
|
|
||||||
prettier:
|
|
||||||
specifier: 3.3.2
|
|
||||||
version: 3.3.2
|
|
||||||
prettier-plugin-sh:
|
|
||||||
specifier: 0.14.0
|
|
||||||
version: 0.14.0(prettier@3.3.2)
|
|
||||||
prettier-plugin-toml:
|
|
||||||
specifier: 2.0.1
|
|
||||||
version: 2.0.1(prettier@3.3.2)
|
|
||||||
|
|
||||||
packages:
|
|
||||||
"@prettier/plugin-xml@3.4.1":
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-Uf/6/+9ez6z/IvZErgobZ2G9n1ybxF5BhCd7eMcKqfoWuOzzNUxBipNo3QAP8kRC1VD18TIo84no7LhqtyDcTg==,
|
|
||||||
}
|
|
||||||
peerDependencies:
|
|
||||||
prettier: ^3.0.0
|
|
||||||
|
|
||||||
"@taplo/core@0.1.1":
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-BG/zLGf5wiNXGEVPvUAAX/4ilB3PwDUY2o0MV0y47mZbDZ9ad9UK/cIQsILat3bqbPJsALVbU6k3cskNZ3vAQg==,
|
|
||||||
}
|
|
||||||
|
|
||||||
"@taplo/lib@0.4.0-alpha.2":
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-DV/Re3DPVY+BhBtLZ3dmP4mP6YMLSsgq9qGLXwOV38lvNF/fBlgvQswzlXmzCEefL/3q2eMoefZpOI/+GLuCNA==,
|
|
||||||
}
|
|
||||||
|
|
||||||
"@xml-tools/parser@1.0.11":
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==,
|
|
||||||
}
|
|
||||||
|
|
||||||
chevrotain@7.1.1:
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==,
|
|
||||||
}
|
|
||||||
|
|
||||||
mvdan-sh@0.10.1:
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-kMbrH0EObaKmK3nVRKUIIya1dpASHIEusM13S4V1ViHFuxuNxCo+arxoa6j/dbV22YBGjl7UKJm9QQKJ2Crzhg==,
|
|
||||||
}
|
|
||||||
|
|
||||||
prettier-plugin-sh@0.14.0:
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-hfXulj5+zEl/ulrO5kMuuTPKmXvOg0bnLHY1hKFNN/N+/903iZbNp8NyZBTsgI8dtkSgFfAEIQq0IQTyP1ZVFQ==,
|
|
||||||
}
|
|
||||||
engines: { node: ">=16.0.0" }
|
|
||||||
peerDependencies:
|
|
||||||
prettier: ^3.0.3
|
|
||||||
|
|
||||||
prettier-plugin-toml@2.0.1:
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-99z1YOkViECHtXQjGIigd3talI/ybUI1zB3yniAwUrlWBXupNXThB1hM6bwSMUEj2/+tomTlMtT98F5t4s8IWA==,
|
|
||||||
}
|
|
||||||
engines: { node: ">=16.0.0" }
|
|
||||||
peerDependencies:
|
|
||||||
prettier: ^3.0.3
|
|
||||||
|
|
||||||
prettier@3.3.2:
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==,
|
|
||||||
}
|
|
||||||
engines: { node: ">=14" }
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
regexp-to-ast@0.5.0:
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==,
|
|
||||||
}
|
|
||||||
|
|
||||||
sh-syntax@0.4.2:
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-/l2UZ5fhGZLVZa16XQM9/Vq/hezGGbdHeVEA01uWjOL1+7Ek/gt6FquW0iKKws4a9AYPYvlz6RyVvjh3JxOteg==,
|
|
||||||
}
|
|
||||||
engines: { node: ">=16.0.0" }
|
|
||||||
|
|
||||||
tslib@2.6.3:
|
|
||||||
resolution:
|
|
||||||
{
|
|
||||||
integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==,
|
|
||||||
}
|
|
||||||
|
|
||||||
snapshots:
|
|
||||||
"@prettier/plugin-xml@3.4.1(prettier@3.3.2)":
|
|
||||||
dependencies:
|
|
||||||
"@xml-tools/parser": 1.0.11
|
|
||||||
prettier: 3.3.2
|
|
||||||
|
|
||||||
"@taplo/core@0.1.1": {}
|
|
||||||
|
|
||||||
"@taplo/lib@0.4.0-alpha.2":
|
|
||||||
dependencies:
|
|
||||||
"@taplo/core": 0.1.1
|
|
||||||
|
|
||||||
"@xml-tools/parser@1.0.11":
|
|
||||||
dependencies:
|
|
||||||
chevrotain: 7.1.1
|
|
||||||
|
|
||||||
chevrotain@7.1.1:
|
|
||||||
dependencies:
|
|
||||||
regexp-to-ast: 0.5.0
|
|
||||||
|
|
||||||
mvdan-sh@0.10.1: {}
|
|
||||||
|
|
||||||
prettier-plugin-sh@0.14.0(prettier@3.3.2):
|
|
||||||
dependencies:
|
|
||||||
mvdan-sh: 0.10.1
|
|
||||||
prettier: 3.3.2
|
|
||||||
sh-syntax: 0.4.2
|
|
||||||
|
|
||||||
prettier-plugin-toml@2.0.1(prettier@3.3.2):
|
|
||||||
dependencies:
|
|
||||||
"@taplo/lib": 0.4.0-alpha.2
|
|
||||||
prettier: 3.3.2
|
|
||||||
|
|
||||||
prettier@3.3.2: {}
|
|
||||||
|
|
||||||
regexp-to-ast@0.5.0: {}
|
|
||||||
|
|
||||||
sh-syntax@0.4.2:
|
|
||||||
dependencies:
|
|
||||||
tslib: 2.6.3
|
|
||||||
|
|
||||||
tslib@2.6.3: {}
|
|
@ -1 +1 @@
|
|||||||
Subproject commit f2c70340a8a8653bacf4a31c730d14ff8a8aff30
|
Subproject commit 52c86ffbef02ada5660d0a822306ce779f1fa93f
|
@ -1 +1 @@
|
|||||||
Subproject commit 0b29f1e8133a20038f250dde83a1d84deca44771
|
Subproject commit e7e386bb274fc32e17825710c0ca7552fd22a245
|
Loading…
x
Reference in New Issue
Block a user