Skip to content

Commit e8a6b97

Browse files
chore(copier): update from template
1 parent 38e21c7 commit e8a6b97

File tree

6 files changed

+70
-5
lines changed

6 files changed

+70
-5
lines changed

.config/copier/.copier-answers.python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is @generated by <https://github.com/liblaf/copier-python>.
22
# DO NOT EDIT!
33
# prettier-ignore
4-
_commit: '1558914'
4+
_commit: 101595d
55
_src_path: gh:liblaf/copier-python
66
answers_file_shared: .config/copier/.copier-answers.shared.yaml
77
namespace: ''
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is @generated by <https://github.com/liblaf/copier-release>.
22
# DO NOT EDIT!
33
# prettier-ignore
4-
_commit: 8485b20
4+
_commit: 3f9be0a
55
_src_path: gh:liblaf/copier-release
66
release_type: python

.config/copier/.copier-answers.shared.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is @generated by <https://github.com/liblaf/copier-shared>.
22
# DO NOT EDIT!
33
# prettier-ignore
4-
_commit: caef9d4
4+
_commit: aa79640
55
_src_path: gh:liblaf/copier-shared
66
author_email: [email protected]
77
author_name: liblaf

.github/workflows/bench.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Setup Python
5858
uses: liblaf/actions/setup-python@main
5959
- name: Install Mise
60-
uses: jdx/mise-action@v2
60+
uses: jdx/mise-action@v3
6161
- name: Bench
6262
uses: CodSpeedHQ/action@v3
6363
with:

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- name: Setup Python
6464
uses: liblaf/actions/setup-python@main
6565
- name: Install Mise
66-
uses: jdx/mise-action@v2
66+
uses: jdx/mise-action@v3
6767
- name: Test
6868
run: mise run test
6969
- name: Upload Coverage

.pre-commit-config.yaml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# yaml-language-server: $schema=https://www.schemastore.org/pre-commit-config.json
2+
# This file is @generated by <https://github.com/liblaf/copier-shared>.
3+
# DO NOT EDIT!
4+
5+
# ref: <https://pre-commit.com/>
6+
7+
ci:
8+
autofix_commit_msg: |-
9+
chore(pre-commit.ci): auto fixes from pre-commit.com hooks
10+
11+
for more information, see https://pre-commit.ci
12+
autoupdate_commit_msg: |-
13+
chore(pre-commit.ci): pre-commit autoupdate
14+
15+
repos:
16+
- repo: https://github.com/astral-sh/ruff-pre-commit
17+
rev: v0.12.10
18+
hooks:
19+
- id: ruff-check
20+
args:
21+
- --fix
22+
- id: ruff-format
23+
- repo: https://github.com/biomejs/pre-commit
24+
rev: v2.2.0
25+
hooks:
26+
- id: biome-check
27+
exclude_types:
28+
- json
29+
- json5
30+
- repo: https://github.com/iterative/dvc
31+
rev: 3.62.0
32+
hooks:
33+
- id: dvc-pre-commit
34+
stages:
35+
- pre-commit
36+
- id: dvc-pre-push
37+
stages:
38+
- pre-push
39+
- id: dvc-post-checkout
40+
always_run: true
41+
stages:
42+
- post-checkout
43+
- repo: https://github.com/pre-commit/pre-commit-hooks
44+
rev: v6.0.0
45+
hooks:
46+
- id: check-added-large-files
47+
- id: check-case-conflict
48+
- id: check-illegal-windows-names
49+
- id: check-merge-conflict
50+
- id: check-symlinks
51+
- id: destroyed-symlinks
52+
- id: detect-private-key
53+
- id: end-of-file-fixer
54+
- id: fix-byte-order-marker
55+
- id: mixed-line-ending
56+
- id: trailing-whitespace
57+
- repo: https://github.com/shellcheck-py/shellcheck-py
58+
rev: v0.11.0.1
59+
hooks:
60+
- id: shellcheck
61+
62+
default_install_hook_types:
63+
- post-checkout
64+
- pre-commit
65+
- pre-push

0 commit comments

Comments
 (0)