Skip to content

Commit e16a407

Browse files
committed
Update template
1 parent 60f9c24 commit e16a407

File tree

7 files changed

+323
-293
lines changed

7 files changed

+323
-293
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# Changes here will be overwritten by Copier
3-
_commit: v2.25.1
3+
_commit: v2.30.0
44
_src_path: gh:remerge/template
55
project_id: ansible-role-zfs
66
project_license: apache-2.0

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
7+
[*.{js,json,yml}]
8+
charset = utf-8
9+
indent_style = space
10+
indent_size = 2

.gitattributes

Whitespace-only changes.

.gitignore

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
*.lzma
1818
*.cab
1919
*.xar
20+
*.zst
21+
*.tzst
2022

2123
# Packing-only formats
2224
*.iso
@@ -221,10 +223,6 @@ $RECYCLE.BIN/
221223
## User settings
222224
xcuserdata/
223225

224-
## Xcode 8 and earlier
225-
*.xcscmblueprint
226-
*.xccheckout
227-
228226
## https://raw.githubusercontent.com/github/gitignore/main/community/OpenSSL.gitignore
229227

230228
# OpenSSL-related files best not committed
@@ -287,6 +285,9 @@ xcuserdata/
287285
go.work
288286
go.work.sum
289287

288+
# env file
289+
.env
290+
290291
## https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
291292

292293
# Logs
@@ -612,6 +613,9 @@ override.tf.json
612613
*_override.tf
613614
*_override.tf.json
614615

616+
# Ignore transient lock info files created by terraform apply
617+
.terraform.tfstate.lock.info
618+
615619
# Include override files you do wish to add to version control using negated pattern
616620
# !example_override.tf
617621

.pre-commit-config.yaml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,6 @@ repos:
1515
- id: check-added-large-files
1616
- id: check-case-conflict
1717
- id: check-executables-have-shebangs
18-
- id: check-json
19-
exclude: |
20-
(?x)^(
21-
\.vscode/.*\.json|
22-
\.eslintrc\.json
23-
)$
2418
- id: check-merge-conflict
2519
- id: check-shebang-scripts-are-executable
2620
- id: check-symlinks
@@ -46,7 +40,7 @@ repos:
4640
types: [text]
4741
exclude: "^project/"
4842
additional_dependencies:
49-
43+
5044

5145
# https://github.com/igorshubovych/markdownlint-cli/tags
5246
- repo: https://github.com/igorshubovych/markdownlint-cli
@@ -84,7 +78,7 @@ repos:
8478

8579
# https://github.com/bridgecrewio/checkov/tags
8680
- repo: https://github.com/bridgecrewio/checkov
87-
rev: "3.2.183"
81+
rev: "3.2.235"
8882
hooks:
8983
- id: checkov
9084
name: checkov

poetry.lock

Lines changed: 298 additions & 276 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ package-mode = false
99
python = "^3.10, < 3.13"
1010

1111
[tool.poetry.group.dev.dependencies]
12-
black = "^24.4.2"
13-
flake8 = "^7.1.0"
14-
flake8-bugbear = "^24.4.26"
15-
pylint = "^3.2.5"
12+
black = "^24.8.0"
13+
flake8 = "^7.1.1"
14+
flake8-bugbear = "^24.8.19"
15+
pylint = "^3.2.6"
1616
ansible-lint = { version = "^24.7.0", markers = "platform_system != 'Windows'" }
1717

1818
[build-system]

0 commit comments

Comments
 (0)