File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
src/ansible_creator/resources/collection_project/plugins/action
tests/fixtures/collection/testorg/testcol/plugins/action Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 24
24
- prettier
25
25
26
26
- repo : https://github.com/streetsidesoftware/cspell-cli
27
- rev : v8.19 .1
27
+ rev : v9.0 .1
28
28
hooks :
29
29
- id : cspell
30
30
name : Spell check with cspell
@@ -70,12 +70,12 @@ repos:
70
70
- id : tox-ini-fmt
71
71
72
72
- repo : https://github.com/astral-sh/ruff-pre-commit
73
- rev : v0.11.8
73
+ rev : v0.11.12
74
74
hooks :
75
75
- id : ruff
76
76
entry : sh -c 'ruff check --fix --force-exclude && ruff format --force-exclude'
77
77
- repo : https://github.com/pre-commit/mirrors-mypy.git
78
- rev : v1.15 .0
78
+ rev : v1.16 .0
79
79
hooks :
80
80
- id : mypy
81
81
additional_dependencies : &deps
87
87
# Override default pre-commit '--ignore-missing-imports'
88
88
args : []
89
89
- repo : https://github.com/jsh9/pydoclint
90
- rev : " 0.6.6 "
90
+ rev : " 0.6.7 "
91
91
hooks :
92
92
- id : pydoclint
93
93
# This allows automatic reduction of the baseline file when needed.
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class ActionModule(ActionBase): # type: ignore[misc]
60
60
# Get the task arguments
61
61
if task_vars is None:
62
62
task_vars = {}
63
- result = {}
63
+ result: Dict[str, Any] = {}
64
64
warnings: list[str] = []
65
65
66
66
# Example processing logic - Replace this with actual action code
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def run(
55
55
# Get the task arguments
56
56
if task_vars is None :
57
57
task_vars = {}
58
- result = {}
58
+ result : Dict [ str , Any ] = {}
59
59
warnings : list [str ] = []
60
60
61
61
# Example processing logic - Replace this with actual action code
You can’t perform that action at this time.
0 commit comments