rumdl 0.0.91__py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 0.0.92__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.
- rumdl-0.0.92.data/scripts/benchmark +0 -0
- rumdl-0.0.92.data/scripts/file_parallel_benchmark +0 -0
- {rumdl-0.0.91.data → rumdl-0.0.92.data}/scripts/measure_code_span_performance +0 -0
- {rumdl-0.0.91.data → rumdl-0.0.92.data}/scripts/rumdl +0 -0
- {rumdl-0.0.91.dist-info → rumdl-0.0.92.dist-info}/METADATA +58 -43
- rumdl-0.0.92.dist-info/RECORD +11 -0
- rumdl-0.0.91.data/scripts/benchmark +0 -0
- rumdl-0.0.91.data/scripts/file_parallel_benchmark +0 -0
- rumdl-0.0.91.dist-info/RECORD +0 -11
- {rumdl-0.0.91.dist-info → rumdl-0.0.92.dist-info}/WHEEL +0 -0
- {rumdl-0.0.91.dist-info → rumdl-0.0.92.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rumdl
|
|
3
|
-
Version: 0.0.
|
|
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.
|
|
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
|
-
##
|
|
117
|
-
|
|
118
|
-
rumdl is designed for speed and efficiency:
|
|
119
|
-
|
|
120
|
-

|
|
83
|
+
## Table of Contents
|
|
121
84
|
|
|
122
|
-
|
|
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=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.92.data/scripts/benchmark,sha256=mfUIMz1IC5-N7ZB3caSwVB0CJA_K4GJgvwUnY6PXQJU,2505152
|
|
5
|
+
rumdl-0.0.92.data/scripts/file_parallel_benchmark,sha256=YXLI1bHG77GKyPKB5J06DASYzfceKp09Kk3FEEAMzzg,2979840
|
|
6
|
+
rumdl-0.0.92.data/scripts/measure_code_span_performance,sha256=A3RILBsZJQpLSKToC7Q_nYip-LPzH8ONxFcErWhcEyc,1576192
|
|
7
|
+
rumdl-0.0.92.data/scripts/rumdl,sha256=OyOtQG4LA0QbXwv3yBN514zNS9vQzRJhciUICDgVWyc,5377136
|
|
8
|
+
rumdl-0.0.92.dist-info/METADATA,sha256=wVdiUuspZi45lNKplSkAURG3cVBciejImHBQqd1hCeI,20035
|
|
9
|
+
rumdl-0.0.92.dist-info/WHEEL,sha256=BqU7fUWxrsHkAgI0J4n63fC5sQUMRILJc4C2oK9WxLI,128
|
|
10
|
+
rumdl-0.0.92.dist-info/licenses/LICENSE,sha256=xXY7jFvuEmObzRovm2RZmB7KR1sldVYWZLtcKIqlh3E,1073
|
|
11
|
+
rumdl-0.0.92.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
rumdl-0.0.91.dist-info/RECORD
DELETED
|
@@ -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
|
|
File without changes
|