rumdl 0.0.41__py3-none-win_amd64.whl → 0.0.43__py3-none-win_amd64.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.43
|
|
4
4
|
Classifier: Development Status :: 4 - Beta
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -73,6 +73,7 @@ Project-URL: Repository, https://github.com/rvben/rumdl.git
|
|
|
73
73
|
- [Prerequisites](#prerequisites)
|
|
74
74
|
- [Building](#building)
|
|
75
75
|
- [Testing](#testing)
|
|
76
|
+
- [Using rumdl with pre-commit](#using-rumdl-with-pre-commit)
|
|
76
77
|
- [License](#license)
|
|
77
78
|
|
|
78
79
|
## Quick Start
|
|
@@ -366,6 +367,27 @@ make build
|
|
|
366
367
|
make test
|
|
367
368
|
```
|
|
368
369
|
|
|
370
|
+
## Using rumdl with pre-commit
|
|
371
|
+
|
|
372
|
+
You can use `rumdl` as a pre-commit hook in your own projects to check your Markdown files.
|
|
373
|
+
|
|
374
|
+
Add the following to your `.pre-commit-config.yaml`:
|
|
375
|
+
|
|
376
|
+
```yaml
|
|
377
|
+
repos:
|
|
378
|
+
- repo: https://github.com/rvben/rumdl
|
|
379
|
+
rev: v0.0.43 # Use the latest release tag
|
|
380
|
+
hooks:
|
|
381
|
+
- id: rumdl-check # Just check for issues
|
|
382
|
+
# Or use rumdl-fix to automatically fix issues:
|
|
383
|
+
# - id: rumdl-fix
|
|
384
|
+
```
|
|
385
|
+
|
|
386
|
+
Then run `pre-commit install`.
|
|
387
|
+
|
|
388
|
+
Pre-commit will automatically download and install `rumdl` using `cargo`. `rumdl` will respect any `.rumdl.toml` or `pyproject.toml` configuration file present in your repository.
|
|
389
|
+
|
|
369
390
|
## License
|
|
370
391
|
|
|
371
|
-
MIT License
|
|
392
|
+
rumdl is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
|
|
393
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
rumdl-0.0.43.dist-info/METADATA,sha256=acAqIPibNz79IPPfaa8iVuBvYvYuYfNk-8YGMcr9flc,12479
|
|
2
|
+
rumdl-0.0.43.dist-info/WHEEL,sha256=LLQFiH3PDiV0Fx2rdtwgTAjjdTZOsQg2uytkqCh5Fbg,93
|
|
3
|
+
python/rumdl/py.typed,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
4
|
+
python/rumdl/__init__.py,sha256=oHcESVopbLsh5hnNa4Z1iLIS-Bi9ai_Bzc5mLuibiUY,95
|
|
5
|
+
python/rumdl/__main__.py,sha256=xlCbPU2Q4ZrlTc3Aeg0d0EFxqfA4QILeVnKckqeMqDQ,1959
|
|
6
|
+
rumdl-0.0.43.data/scripts/rumdl.exe,sha256=vNTN4Ao_cq6OtEgNIL7W5ZYXrlJAgC4ypy5l1nKFpw8,5043712
|
|
7
|
+
rumdl-0.0.43.dist-info/RECORD,,
|
rumdl-0.0.41.dist-info/RECORD
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
rumdl-0.0.41.dist-info/METADATA,sha256=O6Us3yHh6USV4keWiT0FeUkmI5rnXyGWgDpy1sYIxI8,11682
|
|
2
|
-
rumdl-0.0.41.dist-info/WHEEL,sha256=LLQFiH3PDiV0Fx2rdtwgTAjjdTZOsQg2uytkqCh5Fbg,93
|
|
3
|
-
python/rumdl/py.typed,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
4
|
-
python/rumdl/__init__.py,sha256=oHcESVopbLsh5hnNa4Z1iLIS-Bi9ai_Bzc5mLuibiUY,95
|
|
5
|
-
python/rumdl/__main__.py,sha256=xlCbPU2Q4ZrlTc3Aeg0d0EFxqfA4QILeVnKckqeMqDQ,1959
|
|
6
|
-
rumdl-0.0.41.data/scripts/rumdl.exe,sha256=gRAegaf1G5q0O_Bh8BZvSIOUoikCpG7WlkMaAjAD6N4,5039616
|
|
7
|
-
rumdl-0.0.41.dist-info/RECORD,,
|
|
File without changes
|