-
Notifications
You must be signed in to change notification settings - Fork 0
/
copier.yaml
64 lines (55 loc) · 1.3 KB
/
copier.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
# --- COPIER CONFIGURATION ---------------------------------------------------
_min_copier_version: "9"
_answers_file: .copier-answers.yaml
_envops:
autoescape: false
keep_trailing_newline: true
_jinja_extensions:
- copier_templates_extensions.TemplateExtensionLoader
_subdirectory: template
_message_after_copy: &postmessage |
Your pre-commit configuration has been generated.
You should:
1. Review and commit these changes
2. Run `pre-commit run --all-files` to ensure your repo's current state matches the configured rules
3. Run `pre-commit install` to ensure these checks run on every commit
_message_after_update: *postmessage
_templates_suffix: .jinja
# --- PROMPT -----------------------------------------------------------------
editorconfig:
type: bool
help: "Use editorconfig?"
default: true
hadolint:
type: bool
help: "Use hadolint?"
default: true
markdownlint:
type: bool
help: "Use markdownlint?"
default: true
prettier:
type: bool
help: "Use prettier?"
default: true
ruff:
type: bool
help: "Use ruff?"
default: true
shellcheck:
type: bool
help: "Use shellcheck?"
default: true
shfmt:
type: bool
help: "Use shfmt?"
default: true
typos:
type: bool
help: "Use typos?"
default: true
yamllint:
type: bool
help: "Use yamllint?"
default: true