rumdl 0.0.91__py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 0.0.93__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.

Potentially problematic release.


This version of rumdl might be problematic. Click here for more details.

Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rumdl
3
- Version: 0.0.91
3
+ Version: 0.0.93
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -48,41 +48,6 @@ Project-URL: Repository, https://github.com/rvben/rumdl.git
48
48
 
49
49
  </div>
50
50
 
51
- ## Table of Contents
52
-
53
- - [rumdl - A high-performance Markdown linter, written in Rust](#rumdl---a-high-performance-markdown-linter-written-in-rust)
54
- - [A modern Markdown linter and formatter, built for speed with Rust](#a-modern-markdown-linter-and-formatter-built-for-speed-with-rust)
55
- - [Table of Contents](#table-of-contents)
56
- - [Quick Start](#quick-start)
57
- - [Overview](#overview)
58
- - [Performance](#performance)
59
- - [Installation](#installation)
60
- - [Using Cargo (Rust)](#using-cargo-rust)
61
- - [Using pip (Python)](#using-pip-python)
62
- - [Download binary](#download-binary)
63
- - [VS Code Extension](#vs-code-extension)
64
- - [Usage](#usage)
65
- - [Pre-commit Integration](#pre-commit-integration)
66
- - [Rules](#rules)
67
- - [Command-line Interface](#command-line-interface)
68
- - [Commands](#commands)
69
- - [Usage Examples](#usage-examples)
70
- - [Configuration](#configuration)
71
- - [Configuration File Example](#configuration-file-example)
72
- - [Initializing Configuration](#initializing-configuration)
73
- - [Configuration in pyproject.toml](#configuration-in-pyprojecttoml)
74
- - [Configuration Output](#configuration-output)
75
- - [Effective Configuration (`rumdl config`)](#effective-configuration-rumdl-config)
76
- - [Example output](#example-output)
77
- - [Defaults Only (`rumdl config --defaults`)](#defaults-only-rumdl-config---defaults)
78
- - [Output Style](#output-style)
79
- - [Output Format](#output-format)
80
- - [Development](#development)
81
- - [Prerequisites](#prerequisites)
82
- - [Building](#building)
83
- - [Testing](#testing)
84
- - [License](#license)
85
-
86
51
  ## Quick Start
87
52
 
88
53
  ```bash
@@ -101,7 +66,11 @@ rumdl init
101
66
 
102
67
  ## Overview
103
68
 
104
- rumdl is a high-performance Markdown linter and fixer that helps ensure consistency and best practices in your Markdown files. It offers:
69
+ rumdl is a high-performance Markdown linter and fixer that helps ensure consistency and best practices
70
+ in your Markdown files. Inspired by [ruff](https://github.com/astral-sh/ruff)'s approach to Python linting,
71
+ rumdl brings similar speed and developer experience improvements to the Markdown ecosystem.
72
+
73
+ It offers:
105
74
 
106
75
  - ⚡️ **Built for speed** with Rust - significantly faster than alternatives
107
76
  - 🔍 **54 lint rules** covering common Markdown issues
@@ -113,13 +82,37 @@ rumdl is a high-performance Markdown linter and fixer that helps ensure consiste
113
82
  - 📏 **Modern CLI** with detailed error reporting
114
83
  - 🔄 **CI/CD friendly** with non-zero exit code on errors
115
84
 
116
- ## Performance
117
-
118
- rumdl is designed for speed and efficiency:
119
-
120
- ![Performance Comparison](assets/performance_overview.png)
85
+ ## Table of Contents
121
86
 
122
- rumdl is **4.3x faster** on average than markdownlint for typical markdown files, with performance improvements ranging from 3.4x to 5.4x depending on project size.
87
+ - [Quick Start](#quick-start)
88
+ - [Overview](#overview)
89
+ - [Installation](#installation)
90
+ - [Using Cargo (Rust)](#using-cargo-rust)
91
+ - [Using pip (Python)](#using-pip-python)
92
+ - [Using uv](#using-uv)
93
+ - [Download binary](#download-binary)
94
+ - [VS Code Extension](#vs-code-extension)
95
+ - [Usage](#usage)
96
+ - [Pre-commit Integration](#pre-commit-integration)
97
+ - [Rules](#rules)
98
+ - [Command-line Interface](#command-line-interface)
99
+ - [Commands](#commands)
100
+ - [Usage Examples](#usage-examples)
101
+ - [Configuration](#configuration)
102
+ - [Configuration File Example](#configuration-file-example)
103
+ - [Initializing Configuration](#initializing-configuration)
104
+ - [Configuration in pyproject.toml](#configuration-in-pyproject-toml)
105
+ - [Configuration Output](#configuration-output)
106
+ - [Effective Configuration (`rumdl config`)](#effective-configuration-rumdl-config)
107
+ - [Example output](#example-output)
108
+ - [Defaults Only (`rumdl config --defaults`)](#defaults-only-rumdl-config-defaults)
109
+ - [Output Style](#output-style)
110
+ - [Output Format](#output-format)
111
+ - [Development](#development)
112
+ - [Prerequisites](#prerequisites)
113
+ - [Building](#building)
114
+ - [Testing](#testing)
115
+ - [License](#license)
123
116
 
124
117
  ## Installation
125
118
 
@@ -137,6 +130,18 @@ cargo install rumdl
137
130
  pip install rumdl
138
131
  ```
139
132
 
133
+ ### Using uv
134
+
135
+ For faster installation and better dependency management with [uv](https://github.com/astral-sh/uv):
136
+
137
+ ```bash
138
+ # Install directly
139
+ uv tool install rumdl
140
+
141
+ # Or run without installing
142
+ uv tool run rumdl check .
143
+ ```
144
+
140
145
  ### Download binary
141
146
 
142
147
  ```bash
@@ -164,6 +169,7 @@ rumdl vscode --force
164
169
  ```
165
170
 
166
171
  The extension provides:
172
+
167
173
  - 🔍 Real-time linting as you type
168
174
  - 💡 Quick fixes for common issues
169
175
  - 🎨 Code formatting on save
@@ -275,9 +281,11 @@ rumdl <command> [options] [file or directory...]
275
281
  Lint Markdown files and print warnings/errors (main subcommand)
276
282
 
277
283
  **Arguments:**
284
+
278
285
  - `[PATHS...]`: Files or directories to lint. If provided, these paths take precedence over include patterns
279
286
 
280
287
  **Options:**
288
+
281
289
  - `-f, --fix`: Automatically fix issues where possible
282
290
  - `-l, --list-rules`: List all available rules
283
291
  - `-d, --disable <rules>`: Disable specific rules (comma-separated)
@@ -297,6 +305,7 @@ Lint Markdown files and print warnings/errors (main subcommand)
297
305
  Create a default configuration file in the current directory
298
306
 
299
307
  **Options:**
308
+
300
309
  - `--pyproject`: Generate configuration for `pyproject.toml` instead of `.rumdl.toml`
301
310
 
302
311
  #### `import <FILE> [OPTIONS]`
@@ -304,9 +313,11 @@ Create a default configuration file in the current directory
304
313
  Import and convert markdownlint configuration files to rumdl format
305
314
 
306
315
  **Arguments:**
316
+
307
317
  - `<FILE>`: Path to markdownlint config file (JSON/YAML)
308
318
 
309
319
  **Options:**
320
+
310
321
  - `-o, --output <path>`: Output file path (default: `.rumdl.toml`)
311
322
  - `--format <format>`: Output format: `toml` or `json` (default: `toml`)
312
323
  - `--dry-run`: Show converted config without writing to file
@@ -316,6 +327,7 @@ Import and convert markdownlint configuration files to rumdl format
316
327
  Show information about a rule or list all rules
317
328
 
318
329
  **Arguments:**
330
+
319
331
  - `[rule]`: Rule name or ID (optional). If provided, shows details for that rule. If omitted, lists all available rules
320
332
 
321
333
  #### `config [OPTIONS] [COMMAND]`
@@ -323,10 +335,12 @@ Show information about a rule or list all rules
323
335
  Show configuration or query a specific key
324
336
 
325
337
  **Options:**
338
+
326
339
  - `--defaults`: Show only the default configuration values
327
340
  - `--output <format>`: Output format (e.g. `toml`, `json`)
328
341
 
329
342
  **Subcommands:**
343
+
330
344
  - `get <key>`: Query a specific config key (e.g. `global.exclude` or `MD013.line_length`)
331
345
  - `file`: Show the absolute path of the configuration file that was loaded
332
346
 
@@ -335,6 +349,7 @@ Show configuration or query a specific key
335
349
  Start the Language Server Protocol server for editor integration
336
350
 
337
351
  **Options:**
352
+
338
353
  - `--port <PORT>`: TCP port to listen on (for debugging)
339
354
  - `--stdio`: Use stdio for communication (default)
340
355
  - `-v, --verbose`: Enable verbose logging
@@ -344,6 +359,7 @@ Start the Language Server Protocol server for editor integration
344
359
  Install the rumdl VS Code extension
345
360
 
346
361
  **Options:**
362
+
347
363
  - `--force`: Force reinstall even if already installed
348
364
  - `--status`: Show installation status without installing
349
365
 
@@ -431,6 +447,7 @@ rumdl can be configured in several ways:
431
447
  rumdl provides seamless compatibility with existing markdownlint configurations:
432
448
 
433
449
  **Automatic Discovery**: rumdl automatically detects and loads markdownlint config files:
450
+
434
451
  - `.markdownlint.json` / `.markdownlint.jsonc`
435
452
  - `.markdownlint.yaml` / `.markdownlint.yml`
436
453
  - `markdownlint.json` / `markdownlint.yaml`
@@ -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.93.data/scripts/benchmark,sha256=hkwkeaLVNcYpFMb3maWKf2rQrVJYNcc8ZtucdUvefDM,2538704
5
+ rumdl-0.0.93.data/scripts/file_parallel_benchmark,sha256=dzW_D4XHhwcBtGpnmnqN5BYYV-RyUfH9CCAhiLuwaKg,2996632
6
+ rumdl-0.0.93.data/scripts/measure_code_span_performance,sha256=zNPaH0DYd4-7nM6JlJC-PaJ0sKjhsnQtPdqhZ1Q5eP0,1576192
7
+ rumdl-0.0.93.data/scripts/rumdl,sha256=Gcvdo34UBmiUlJty8Hl1-tJLBsDGW05nSPFhKA0v4Ag,5404104
8
+ rumdl-0.0.93.dist-info/METADATA,sha256=3xtlcLheZdTxnh1yQWYq22cTTGj2x6krcmir3S7QUWo,20034
9
+ rumdl-0.0.93.dist-info/WHEEL,sha256=BqU7fUWxrsHkAgI0J4n63fC5sQUMRILJc4C2oK9WxLI,128
10
+ rumdl-0.0.93.dist-info/licenses/LICENSE,sha256=xXY7jFvuEmObzRovm2RZmB7KR1sldVYWZLtcKIqlh3E,1073
11
+ rumdl-0.0.93.dist-info/RECORD,,
Binary file
@@ -1,11 +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.91.data/scripts/benchmark,sha256=qBjcyq29A1E6BkqFH33GkDDIKSjXGm1KXKVBfY5cRXo,2479768
5
- rumdl-0.0.91.data/scripts/file_parallel_benchmark,sha256=iRvT7Qy90wjFcpixbh4bCfkCL8QcL8_B7UOk4wHGXaw,2974832
6
- rumdl-0.0.91.data/scripts/measure_code_span_performance,sha256=Lzvv9gBEztM1STUfEy6xrPfXTBhv0cBdeebOMeGtrFg,1576176
7
- rumdl-0.0.91.data/scripts/rumdl,sha256=9MegQ9S3Khh-0t9JU3vnj8Kv2caZta97TAe8AGCDTVs,5361400
8
- rumdl-0.0.91.dist-info/METADATA,sha256=HXszBOYsOukm4G2M9sOi4WKSh06ISeVXQnDkmeAIiTk,20278
9
- rumdl-0.0.91.dist-info/WHEEL,sha256=BqU7fUWxrsHkAgI0J4n63fC5sQUMRILJc4C2oK9WxLI,128
10
- rumdl-0.0.91.dist-info/licenses/LICENSE,sha256=xXY7jFvuEmObzRovm2RZmB7KR1sldVYWZLtcKIqlh3E,1073
11
- rumdl-0.0.91.dist-info/RECORD,,
File without changes