rumdl 0.0.87__py3-none-macosx_11_0_arm64.whl → 0.0.89__py3-none-macosx_11_0_arm64.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 rumdl might be problematic. Click here for more details.

Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rumdl
3
- Version: 0.0.87
3
+ Version: 0.0.89
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -17,6 +17,7 @@ Classifier: Programming Language :: Rust
17
17
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
18
  Classifier: Topic :: Software Development :: Quality Assurance
19
19
  Classifier: Topic :: Text Processing :: Markup :: Markdown
20
+ License-File: LICENSE
20
21
  Summary: A fast Markdown linter written in Rust
21
22
  Keywords: markdown,linter,markdown-linter,static-analysis,documentation
22
23
  Home-Page: https://github.com/rvben/rumdl
@@ -102,7 +103,7 @@ rumdl init
102
103
  rumdl is a high-performance Markdown linter and fixer that helps ensure consistency and best practices in your Markdown files. It offers:
103
104
 
104
105
  - ⚡️ **Built for speed** with Rust
105
- - 🔍 **50+ lint rules** covering common Markdown issues
106
+ - 🔍 **54 lint rules** covering common Markdown issues
106
107
  - 🛠️ **Automatic fixing** with `--fix` for most rules
107
108
  - 📦 **Zero dependencies** - single binary with no runtime requirements
108
109
  - 🔧 **Highly configurable** with TOML-based config files
@@ -234,7 +235,7 @@ When you run `pre-commit install` or `pre-commit run`, pre-commit will automatic
234
235
 
235
236
  ## Rules
236
237
 
237
- rumdl implements over 50 lint rules for Markdown files. Here are some key rule categories:
238
+ rumdl implements 54 lint rules for Markdown files. Here are some key rule categories:
238
239
 
239
240
  | Category | Description | Example Rules |
240
241
  |-----------|-------------|---------------|
@@ -277,6 +278,7 @@ Lint Markdown files and print warnings/errors (main subcommand)
277
278
  - `--respect-gitignore`: Respect .gitignore files when scanning directories (does not apply to explicitly provided paths)
278
279
  - `-v, --verbose`: Show detailed output
279
280
  - `--profile`: Show profiling information
281
+ - `--statistics`: Show rule violation statistics summary
280
282
  - `-q, --quiet`: Quiet mode
281
283
  - `-o, --output <format>`: Output format: `text` (default) or `json`
282
284
  - `--stdin`: Read from stdin instead of files
@@ -393,6 +395,9 @@ echo "# My Heading" | rumdl check --stdin
393
395
  # Get JSON output for integration with other tools
394
396
  rumdl check --output json README.md
395
397
 
398
+ # Show statistics summary of rule violations
399
+ rumdl check --statistics .
400
+
396
401
  # Disable colors in output
397
402
  rumdl check --color never README.md
398
403
 
@@ -0,0 +1,11 @@
1
+ python/rumdl/__init__.py,sha256=En6tBgSj-MMeUcBAV7HlMjfstzY6npWxZtsRa30hIj0,90
2
+ python/rumdl/__main__.py,sha256=DQ-es4rlJ-iiHUeoTruvZzp-YV6rGShOWZYN4zBx_Iw,1903
3
+ python/rumdl/py.typed,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
4
+ rumdl-0.0.89.data/scripts/benchmark,sha256=cOZZIkfzRUoRc4quUnRJti97kRpPOAlcyDcsX8iD2xs,2348400
5
+ rumdl-0.0.89.data/scripts/file_parallel_benchmark,sha256=e43NYnCGpCo6P3aVkN147JXN7_Epzbsiz6s7DBElGSw,2365920
6
+ rumdl-0.0.89.data/scripts/measure_code_span_performance,sha256=0daGmQFijsmkCMFUOmzP4XmFg_aSgf2UsM6uYmOLeCg,1614608
7
+ rumdl-0.0.89.data/scripts/rumdl,sha256=EgpQGZJTmPIjUeAOwud3PwlsR7G5ziNZx0FHw11Kxt0,4449168
8
+ rumdl-0.0.89.dist-info/METADATA,sha256=XsZ8HR6U7TTlenxEg1yMK4xXYPnWXXOWoJl6pgmlcPE,19918
9
+ rumdl-0.0.89.dist-info/WHEEL,sha256=xXrZFUZdUx5dZHQRUyNYMU2_RR2PioJ5KlyzYJq5nRk,101
10
+ rumdl-0.0.89.dist-info/licenses/LICENSE,sha256=xXY7jFvuEmObzRovm2RZmB7KR1sldVYWZLtcKIqlh3E,1073
11
+ rumdl-0.0.89.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (1.8.7)
2
+ Generator: maturin (1.9.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: py3-none-macosx_11_0_arm64
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Ruben J. Jongejan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
Binary file
@@ -1,7 +0,0 @@
1
- python/rumdl/__init__.py,sha256=En6tBgSj-MMeUcBAV7HlMjfstzY6npWxZtsRa30hIj0,90
2
- python/rumdl/__main__.py,sha256=DQ-es4rlJ-iiHUeoTruvZzp-YV6rGShOWZYN4zBx_Iw,1903
3
- python/rumdl/py.typed,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
4
- rumdl-0.0.87.data/scripts/rumdl,sha256=qAPDQ0ZRS4Ld1NN0UhC91i56RiAheVTg2j_H6PsZN5c,8821680
5
- rumdl-0.0.87.dist-info/METADATA,sha256=peKk10oG_M6WXLiaNaX_A2W3aF8UaqqPNScxKS7IDUY,19772
6
- rumdl-0.0.87.dist-info/WHEEL,sha256=wTThDAACNg8UJZaZ_nMUK-S8PwZifBVqk4qrSNFoct8,101
7
- rumdl-0.0.87.dist-info/RECORD,,