rumdl 0.0.45__py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 0.0.46__py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.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.
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rumdl
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.46
|
|
4
4
|
Classifier: Development Status :: 4 - Beta
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -393,23 +393,30 @@ make test
|
|
|
393
393
|
|
|
394
394
|
## Using rumdl with pre-commit
|
|
395
395
|
|
|
396
|
-
You can use `rumdl` as a pre-commit hook
|
|
396
|
+
You can use `rumdl` as a pre-commit hook to check and fix your Markdown files.
|
|
397
|
+
|
|
398
|
+
The recommended way is to use the official pre-commit hook repository:
|
|
399
|
+
|
|
400
|
+
https://github.com/rvben/rumdl-pre-commit
|
|
397
401
|
|
|
398
402
|
Add the following to your `.pre-commit-config.yaml`:
|
|
399
403
|
|
|
400
404
|
```yaml
|
|
401
405
|
repos:
|
|
402
|
-
-
|
|
406
|
+
- repo: https://github.com/rvben/rumdl-pre-commit
|
|
403
407
|
rev: v0.0.45 # Use the latest release tag
|
|
404
408
|
hooks:
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
409
|
+
- id: rumdl
|
|
410
|
+
# To only check (default):
|
|
411
|
+
# args: []
|
|
412
|
+
# To automatically fix issues:
|
|
413
|
+
# args: [--fix]
|
|
408
414
|
```
|
|
409
415
|
|
|
410
|
-
|
|
416
|
+
- By default, the hook will only check for issues.
|
|
417
|
+
- To automatically fix issues, add `args: [--fix]` to the hook configuration.
|
|
411
418
|
|
|
412
|
-
|
|
419
|
+
When you run `pre-commit install` or `pre-commit run`, pre-commit will automatically install `rumdl` in an isolated Python environment using pip. You do **not** need to install rumdl manually.
|
|
413
420
|
|
|
414
421
|
## License
|
|
415
422
|
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
rumdl-0.0.46.dist-info/METADATA,sha256=inXL6dAzWE9m6K6_iM2tl6ssCqRriJb-Gcq00bXxDGA,13173
|
|
2
|
+
rumdl-0.0.46.dist-info/WHEEL,sha256=51wrJzNa3JMMGHaPe1sLM9VZUn2xONntEjhUwRqgxpg,128
|
|
3
|
+
python/rumdl/__main__.py,sha256=DQ-es4rlJ-iiHUeoTruvZzp-YV6rGShOWZYN4zBx_Iw,1903
|
|
4
|
+
python/rumdl/py.typed,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
5
|
+
python/rumdl/__init__.py,sha256=En6tBgSj-MMeUcBAV7HlMjfstzY6npWxZtsRa30hIj0,90
|
|
6
|
+
rumdl-0.0.46.data/scripts/rumdl,sha256=_dbJoQuplwS3Y86dQkvJKQuXOq-tq5Rx5A_lJ2k596A,4772944
|
|
7
|
+
rumdl-0.0.46.dist-info/RECORD,,
|
rumdl-0.0.45.dist-info/RECORD
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
rumdl-0.0.45.dist-info/METADATA,sha256=CWAGO7dejpDvKdUDo3O4YQaT4yLFP20HkgY3NuGtcrw,12939
|
|
2
|
-
rumdl-0.0.45.dist-info/WHEEL,sha256=51wrJzNa3JMMGHaPe1sLM9VZUn2xONntEjhUwRqgxpg,128
|
|
3
|
-
python/rumdl/__main__.py,sha256=DQ-es4rlJ-iiHUeoTruvZzp-YV6rGShOWZYN4zBx_Iw,1903
|
|
4
|
-
python/rumdl/py.typed,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
5
|
-
python/rumdl/__init__.py,sha256=En6tBgSj-MMeUcBAV7HlMjfstzY6npWxZtsRa30hIj0,90
|
|
6
|
-
rumdl-0.0.45.data/scripts/rumdl,sha256=SLcQkxnjQ1orqqVYPxl6Ig3FBI2K82FdoBSdgA3Q-QQ,4772912
|
|
7
|
-
rumdl-0.0.45.dist-info/RECORD,,
|
|
File without changes
|