dycw-pre-commit-hooks 0.11.0__py3-none-any.whl → 0.11.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dycw-pre-commit-hooks might be problematic. Click here for more details.
- {dycw_pre_commit_hooks-0.11.0.dist-info → dycw_pre_commit_hooks-0.11.1.dist-info}/METADATA +3 -1
- dycw_pre_commit_hooks-0.11.1.dist-info/RECORD +13 -0
- {dycw_pre_commit_hooks-0.11.0.dist-info → dycw_pre_commit_hooks-0.11.1.dist-info}/entry_points.txt +1 -1
- pre_commit_hooks/__init__.py +1 -1
- pre_commit_hooks/replace_sequence_str/__init__.py +55 -0
- pre_commit_hooks/replace_sequence_str/__main__.py +6 -0
- dycw_pre_commit_hooks-0.11.0.dist-info/RECORD +0 -11
- {dycw_pre_commit_hooks-0.11.0.dist-info → dycw_pre_commit_hooks-0.11.1.dist-info}/WHEEL +0 -0
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dycw-pre-commit-hooks
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.1
|
|
4
4
|
Author-email: Derek Wan <d.wan@icloud.com>
|
|
5
5
|
Requires-Python: >=3.12
|
|
6
6
|
Requires-Dist: click<8.3,>=8.2.1
|
|
7
7
|
Requires-Dist: dycw-utilities<0.126,>=0.125.10
|
|
8
|
+
Requires-Dist: libcst<1.9,>=1.8.2
|
|
8
9
|
Requires-Dist: loguru<0.8,>=0.7.3
|
|
9
10
|
Requires-Dist: tomlkit<0.14,>=0.13.2
|
|
10
11
|
Description-Content-Type: text/markdown
|
|
@@ -26,6 +27,7 @@ My [`pre-commit`](https://pre-commit.com/) hooks.
|
|
|
26
27
|
- repo: https://github.com/dycw/pre-commit-hooks
|
|
27
28
|
rev: master
|
|
28
29
|
hooks:
|
|
30
|
+
- id: replace-sequence-str
|
|
29
31
|
- id: run-bump-my-version
|
|
30
32
|
- id: run-ruff-format
|
|
31
33
|
```
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
pre_commit_hooks/__init__.py,sha256=IWWm5-glkVVtfXOLWV-9Tpv8zpUi5iBJpqgf9lTpzdw,59
|
|
2
|
+
pre_commit_hooks/common.py,sha256=sApXaiGpUrPfzlneJQYPYonm8ikWQWNdI6BK7Is8bcA,691
|
|
3
|
+
pre_commit_hooks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
pre_commit_hooks/replace_sequence_str/__init__.py,sha256=bPkc3KHbu8RMFykIsegW06hAKUXtXjJD36KtECDsNR8,1607
|
|
5
|
+
pre_commit_hooks/replace_sequence_str/__main__.py,sha256=B1dxOxngV4vUVnDVrXSywiySOs1P_zF30_4ZMRsOSaY,157
|
|
6
|
+
pre_commit_hooks/run_bump_my_version/__init__.py,sha256=9RpVVqTmtmKkV8rMR4sMfI-i_7gaLOmNrfi2GWgtNSk,1953
|
|
7
|
+
pre_commit_hooks/run_bump_my_version/__main__.py,sha256=w2V3y61jrSau-zxjl8ciHtWPlJQwXbYxNJ2tGYVyI4s,156
|
|
8
|
+
pre_commit_hooks/run_ruff_format/__init__.py,sha256=4QYVE-ktOZjJZGqLMpy4_Te1dASzEkEYVBHzpa1EdGM,2062
|
|
9
|
+
pre_commit_hooks/run_ruff_format/__main__.py,sha256=faesqqpMaesg5r-LvkkQt1W9kahvNr-60K3SMYv1NgY,152
|
|
10
|
+
dycw_pre_commit_hooks-0.11.1.dist-info/METADATA,sha256=c30f9Q_gR8FZBOA3VWdKRcGT_SV5xuvORuLWY6TkhHU,847
|
|
11
|
+
dycw_pre_commit_hooks-0.11.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
12
|
+
dycw_pre_commit_hooks-0.11.1.dist-info/entry_points.txt,sha256=wqBOwmRmDu4artpmdD8KSdWyi_8HqtZiSiopHaXuUi0,204
|
|
13
|
+
dycw_pre_commit_hooks-0.11.1.dist-info/RECORD,,
|
pre_commit_hooks/__init__.py
CHANGED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING, override
|
|
4
|
+
|
|
5
|
+
from click import argument, command
|
|
6
|
+
from libcst import CSTTransformer, Name, Subscript, parse_module
|
|
7
|
+
from libcst.matchers import Index as MIndex
|
|
8
|
+
from libcst.matchers import Name as MName
|
|
9
|
+
from libcst.matchers import Subscript as MSubscript
|
|
10
|
+
from libcst.matchers import SubscriptElement as MSubscriptElement
|
|
11
|
+
from libcst.matchers import matches
|
|
12
|
+
from libcst.metadata import MetadataWrapper
|
|
13
|
+
from utilities.click import FilePath
|
|
14
|
+
|
|
15
|
+
if TYPE_CHECKING:
|
|
16
|
+
from pathlib import Path
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
@command()
|
|
20
|
+
@argument("paths", nargs=-1, type=FilePath)
|
|
21
|
+
def main(*, paths: tuple[Path, ...]) -> bool:
|
|
22
|
+
"""CLI for the `replace_sequence_str` hook."""
|
|
23
|
+
results = list(map(_process, paths))
|
|
24
|
+
return all(results)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def _process(path: Path, /) -> bool:
|
|
28
|
+
existing = path.read_text()
|
|
29
|
+
wrapper = MetadataWrapper(parse_module(existing))
|
|
30
|
+
transformed = wrapper.module.visit(SequenceToListTransformer())
|
|
31
|
+
new = transformed.code
|
|
32
|
+
if existing == new:
|
|
33
|
+
return True
|
|
34
|
+
_ = path.write_text(new)
|
|
35
|
+
return False
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
class SequenceToListTransformer(CSTTransformer):
|
|
39
|
+
@override
|
|
40
|
+
def leave_Subscript(
|
|
41
|
+
self, original_node: Subscript, updated_node: Subscript
|
|
42
|
+
) -> Subscript:
|
|
43
|
+
_ = original_node
|
|
44
|
+
if matches(
|
|
45
|
+
updated_node,
|
|
46
|
+
MSubscript(
|
|
47
|
+
value=MName("Sequence"),
|
|
48
|
+
slice=[MSubscriptElement(slice=MIndex(value=MName("str")))],
|
|
49
|
+
),
|
|
50
|
+
):
|
|
51
|
+
return updated_node.with_changes(value=Name("list"))
|
|
52
|
+
return updated_node
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
__all__ = ["main"]
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
pre_commit_hooks/__init__.py,sha256=lh8ioZVWPAfeUxjmKuyUNzuciJwPUGFpTLYQARsjt5s,59
|
|
2
|
-
pre_commit_hooks/common.py,sha256=sApXaiGpUrPfzlneJQYPYonm8ikWQWNdI6BK7Is8bcA,691
|
|
3
|
-
pre_commit_hooks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
pre_commit_hooks/run_bump_my_version/__init__.py,sha256=9RpVVqTmtmKkV8rMR4sMfI-i_7gaLOmNrfi2GWgtNSk,1953
|
|
5
|
-
pre_commit_hooks/run_bump_my_version/__main__.py,sha256=w2V3y61jrSau-zxjl8ciHtWPlJQwXbYxNJ2tGYVyI4s,156
|
|
6
|
-
pre_commit_hooks/run_ruff_format/__init__.py,sha256=4QYVE-ktOZjJZGqLMpy4_Te1dASzEkEYVBHzpa1EdGM,2062
|
|
7
|
-
pre_commit_hooks/run_ruff_format/__main__.py,sha256=faesqqpMaesg5r-LvkkQt1W9kahvNr-60K3SMYv1NgY,152
|
|
8
|
-
dycw_pre_commit_hooks-0.11.0.dist-info/METADATA,sha256=G02WHjfL3dfXNyD9pl0Xj05cTiK-bbUGQrif_pVkbto,777
|
|
9
|
-
dycw_pre_commit_hooks-0.11.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
10
|
-
dycw_pre_commit_hooks-0.11.0.dist-info/entry_points.txt,sha256=URODtkWLHrg6PagXnVbubNWnEUjExjCM_lCPf2LEllo,196
|
|
11
|
-
dycw_pre_commit_hooks-0.11.0.dist-info/RECORD,,
|
|
File without changes
|