rumdl 0.0.91__py3-none-win_amd64.whl → 0.0.92__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.

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.92
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,9 @@ 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 in your Markdown files. Inspired by [ruff](https://github.com/astral-sh/ruff)'s approach to Python linting, rumdl brings similar speed and developer experience improvements to the Markdown ecosystem.
70
+
71
+ It offers:
105
72
 
106
73
  - ⚡️ **Built for speed** with Rust - significantly faster than alternatives
107
74
  - 🔍 **54 lint rules** covering common Markdown issues
@@ -113,13 +80,37 @@ rumdl is a high-performance Markdown linter and fixer that helps ensure consiste
113
80
  - 📏 **Modern CLI** with detailed error reporting
114
81
  - 🔄 **CI/CD friendly** with non-zero exit code on errors
115
82
 
116
- ## Performance
117
-
118
- rumdl is designed for speed and efficiency:
119
-
120
- ![Performance Comparison](assets/performance_overview.png)
83
+ ## Table of Contents
121
84
 
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.
85
+ - [Quick Start](#quick-start)
86
+ - [Overview](#overview)
87
+ - [Installation](#installation)
88
+ - [Using Cargo (Rust)](#using-cargo-rust)
89
+ - [Using pip (Python)](#using-pip-python)
90
+ - [Using uv](#using-uv)
91
+ - [Download binary](#download-binary)
92
+ - [VS Code Extension](#vs-code-extension)
93
+ - [Usage](#usage)
94
+ - [Pre-commit Integration](#pre-commit-integration)
95
+ - [Rules](#rules)
96
+ - [Command-line Interface](#command-line-interface)
97
+ - [Commands](#commands)
98
+ - [Usage Examples](#usage-examples)
99
+ - [Configuration](#configuration)
100
+ - [Configuration File Example](#configuration-file-example)
101
+ - [Initializing Configuration](#initializing-configuration)
102
+ - [Configuration in pyproject.toml](#configuration-in-pyprojecttoml)
103
+ - [Configuration Output](#configuration-output)
104
+ - [Effective Configuration (`rumdl config`)](#effective-configuration-rumdl-config)
105
+ - [Example output](#example-output)
106
+ - [Defaults Only (`rumdl config --defaults`)](#defaults-only-rumdl-config---defaults)
107
+ - [Output Style](#output-style)
108
+ - [Output Format](#output-format)
109
+ - [Development](#development)
110
+ - [Prerequisites](#prerequisites)
111
+ - [Building](#building)
112
+ - [Testing](#testing)
113
+ - [License](#license)
123
114
 
124
115
  ## Installation
125
116
 
@@ -137,6 +128,18 @@ cargo install rumdl
137
128
  pip install rumdl
138
129
  ```
139
130
 
131
+ ### Using uv
132
+
133
+ For faster installation and better dependency management with [uv](https://github.com/astral-sh/uv):
134
+
135
+ ```bash
136
+ # Install directly
137
+ uv tool install rumdl
138
+
139
+ # Or run without installing
140
+ uv tool run rumdl check .
141
+ ```
142
+
140
143
  ### Download binary
141
144
 
142
145
  ```bash
@@ -164,6 +167,7 @@ rumdl vscode --force
164
167
  ```
165
168
 
166
169
  The extension provides:
170
+
167
171
  - 🔍 Real-time linting as you type
168
172
  - 💡 Quick fixes for common issues
169
173
  - 🎨 Code formatting on save
@@ -275,9 +279,11 @@ rumdl <command> [options] [file or directory...]
275
279
  Lint Markdown files and print warnings/errors (main subcommand)
276
280
 
277
281
  **Arguments:**
282
+
278
283
  - `[PATHS...]`: Files or directories to lint. If provided, these paths take precedence over include patterns
279
284
 
280
285
  **Options:**
286
+
281
287
  - `-f, --fix`: Automatically fix issues where possible
282
288
  - `-l, --list-rules`: List all available rules
283
289
  - `-d, --disable <rules>`: Disable specific rules (comma-separated)
@@ -297,6 +303,7 @@ Lint Markdown files and print warnings/errors (main subcommand)
297
303
  Create a default configuration file in the current directory
298
304
 
299
305
  **Options:**
306
+
300
307
  - `--pyproject`: Generate configuration for `pyproject.toml` instead of `.rumdl.toml`
301
308
 
302
309
  #### `import <FILE> [OPTIONS]`
@@ -304,9 +311,11 @@ Create a default configuration file in the current directory
304
311
  Import and convert markdownlint configuration files to rumdl format
305
312
 
306
313
  **Arguments:**
314
+
307
315
  - `<FILE>`: Path to markdownlint config file (JSON/YAML)
308
316
 
309
317
  **Options:**
318
+
310
319
  - `-o, --output <path>`: Output file path (default: `.rumdl.toml`)
311
320
  - `--format <format>`: Output format: `toml` or `json` (default: `toml`)
312
321
  - `--dry-run`: Show converted config without writing to file
@@ -316,6 +325,7 @@ Import and convert markdownlint configuration files to rumdl format
316
325
  Show information about a rule or list all rules
317
326
 
318
327
  **Arguments:**
328
+
319
329
  - `[rule]`: Rule name or ID (optional). If provided, shows details for that rule. If omitted, lists all available rules
320
330
 
321
331
  #### `config [OPTIONS] [COMMAND]`
@@ -323,10 +333,12 @@ Show information about a rule or list all rules
323
333
  Show configuration or query a specific key
324
334
 
325
335
  **Options:**
336
+
326
337
  - `--defaults`: Show only the default configuration values
327
338
  - `--output <format>`: Output format (e.g. `toml`, `json`)
328
339
 
329
340
  **Subcommands:**
341
+
330
342
  - `get <key>`: Query a specific config key (e.g. `global.exclude` or `MD013.line_length`)
331
343
  - `file`: Show the absolute path of the configuration file that was loaded
332
344
 
@@ -335,6 +347,7 @@ Show configuration or query a specific key
335
347
  Start the Language Server Protocol server for editor integration
336
348
 
337
349
  **Options:**
350
+
338
351
  - `--port <PORT>`: TCP port to listen on (for debugging)
339
352
  - `--stdio`: Use stdio for communication (default)
340
353
  - `-v, --verbose`: Enable verbose logging
@@ -344,6 +357,7 @@ Start the Language Server Protocol server for editor integration
344
357
  Install the rumdl VS Code extension
345
358
 
346
359
  **Options:**
360
+
347
361
  - `--force`: Force reinstall even if already installed
348
362
  - `--status`: Show installation status without installing
349
363
 
@@ -431,6 +445,7 @@ rumdl can be configured in several ways:
431
445
  rumdl provides seamless compatibility with existing markdownlint configurations:
432
446
 
433
447
  **Automatic Discovery**: rumdl automatically detects and loads markdownlint config files:
448
+
434
449
  - `.markdownlint.json` / `.markdownlint.jsonc`
435
450
  - `.markdownlint.yaml` / `.markdownlint.yml`
436
451
  - `markdownlint.json` / `markdownlint.yaml`
@@ -0,0 +1,11 @@
1
+ python/rumdl/__init__.py,sha256=oHcESVopbLsh5hnNa4Z1iLIS-Bi9ai_Bzc5mLuibiUY,95
2
+ python/rumdl/__main__.py,sha256=xlCbPU2Q4ZrlTc3Aeg0d0EFxqfA4QILeVnKckqeMqDQ,1959
3
+ python/rumdl/py.typed,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
4
+ rumdl-0.0.92.data/scripts/benchmark.exe,sha256=QCqbNiOhYbiLR8WchZYccRApHKCHc6_mc4L7nCWWo14,2478592
5
+ rumdl-0.0.92.data/scripts/file_parallel_benchmark.exe,sha256=UDsIaADxUJbz6IHGxqOjWRDoSVkpo0EcbLJz55v3AnI,2888192
6
+ rumdl-0.0.92.data/scripts/measure_code_span_performance.exe,sha256=Qfly1wPK4kjkvizJjA_xNOuBL_RkP56HEXyR_2tv9Sg,1420288
7
+ rumdl-0.0.92.data/scripts/rumdl.exe,sha256=KXqjNq8088HXnxCxfbaBRYB8Ha-SPgR5INw_Ge_mUwI,6338560
8
+ rumdl-0.0.92.dist-info/METADATA,sha256=CqQNmgyw5avHNVeUPu7sKBCZEtwH2bTXw9PRndNQTBo,20697
9
+ rumdl-0.0.92.dist-info/WHEEL,sha256=S7OxZtuPihI-XN3jZuq2sqVMik-O-jyGLiThWItpyfk,93
10
+ rumdl-0.0.92.dist-info/licenses/LICENSE,sha256=JDnBUJnqrV7QffxlUOt5jZ2AYx989xzgBUF0kWmXavI,1093
11
+ rumdl-0.0.92.dist-info/RECORD,,
Binary file
@@ -1,11 +0,0 @@
1
- python/rumdl/__init__.py,sha256=oHcESVopbLsh5hnNa4Z1iLIS-Bi9ai_Bzc5mLuibiUY,95
2
- python/rumdl/__main__.py,sha256=xlCbPU2Q4ZrlTc3Aeg0d0EFxqfA4QILeVnKckqeMqDQ,1959
3
- python/rumdl/py.typed,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
4
- rumdl-0.0.91.data/scripts/benchmark.exe,sha256=bHyheRsoU1sb5F8vGFw7kMruF8TQqQyRdJ6pQse841U,2470912
5
- rumdl-0.0.91.data/scripts/file_parallel_benchmark.exe,sha256=NIhCwAkBUmkV6Q76nc4bqozwTzs-v5QYDq8Guz1k6YM,2881536
6
- rumdl-0.0.91.data/scripts/measure_code_span_performance.exe,sha256=Yk3SYBiNqCygDnyhL-tH15uAH4mvMuxdl7q0t0p5UnA,1419776
7
- rumdl-0.0.91.data/scripts/rumdl.exe,sha256=Yt123SyiocET3X7AvUAp9m-fYuFqwxtscgZ14qbjW6c,6315520
8
- rumdl-0.0.91.dist-info/METADATA,sha256=Q1gWpc3A1xEqhleM7OCGKTZlfbMSCXw_qOEiapz0I0o,20925
9
- rumdl-0.0.91.dist-info/WHEEL,sha256=S7OxZtuPihI-XN3jZuq2sqVMik-O-jyGLiThWItpyfk,93
10
- rumdl-0.0.91.dist-info/licenses/LICENSE,sha256=JDnBUJnqrV7QffxlUOt5jZ2AYx989xzgBUF0kWmXavI,1093
11
- rumdl-0.0.91.dist-info/RECORD,,
File without changes