rumdl 0.0.91__py3-none-macosx_10_12_x86_64.whl → 0.0.93__py3-none-macosx_10_12_x86_64.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.93.data/scripts/benchmark +0 -0
- {rumdl-0.0.91.data → rumdl-0.0.93.data}/scripts/file_parallel_benchmark +0 -0
- {rumdl-0.0.91.data → rumdl-0.0.93.data}/scripts/measure_code_span_performance +0 -0
- {rumdl-0.0.91.data → rumdl-0.0.93.data}/scripts/rumdl +0 -0
- {rumdl-0.0.91.dist-info → rumdl-0.0.93.dist-info}/METADATA +60 -43
- rumdl-0.0.93.dist-info/RECORD +11 -0
- rumdl-0.0.91.data/scripts/benchmark +0 -0
- rumdl-0.0.91.dist-info/RECORD +0 -11
- {rumdl-0.0.91.dist-info → rumdl-0.0.93.dist-info}/WHEEL +0 -0
- {rumdl-0.0.91.dist-info → rumdl-0.0.93.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.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
|
|
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
|
-
##
|
|
117
|
-
|
|
118
|
-
rumdl is designed for speed and efficiency:
|
|
119
|
-
|
|
120
|
-

|
|
85
|
+
## Table of Contents
|
|
121
86
|
|
|
122
|
-
|
|
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=Nc8i1KHFhqFmvpAsAKvtRk3WXDZVsWSuh5bPyaXK3F8,2431104
|
|
5
|
+
rumdl-0.0.93.data/scripts/file_parallel_benchmark,sha256=1zxElJxIiPGR_GG_H1IfPA5yjdMdOJuF99laOx9w03s,2764984
|
|
6
|
+
rumdl-0.0.93.data/scripts/measure_code_span_performance,sha256=mWd3gcNM-s1tP1JnQckmqvD7L7NvJd49hp14TIjJrjo,1430480
|
|
7
|
+
rumdl-0.0.93.data/scripts/rumdl,sha256=B5Oy_82HnG_zaqt9ogoAHHTwF-T2lft7dFhclu9m33o,5350704
|
|
8
|
+
rumdl-0.0.93.dist-info/METADATA,sha256=3xtlcLheZdTxnh1yQWYq22cTTGj2x6krcmir3S7QUWo,20034
|
|
9
|
+
rumdl-0.0.93.dist-info/WHEEL,sha256=_ftC59G2lUDVh6DjVQid1lXOEswHzpmZBvGibXyRtww,103
|
|
10
|
+
rumdl-0.0.93.dist-info/licenses/LICENSE,sha256=xXY7jFvuEmObzRovm2RZmB7KR1sldVYWZLtcKIqlh3E,1073
|
|
11
|
+
rumdl-0.0.93.dist-info/RECORD,,
|
|
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=hUZ9oDhnKTKgWRicUnK0OdeEiSMDlJj_YMF6x1I3rHc,2389944
|
|
5
|
-
rumdl-0.0.91.data/scripts/file_parallel_benchmark,sha256=ImH1EysT5bDqCa7y7iKA-WMBxJt04CcQqfHIApxVLwg,2736184
|
|
6
|
-
rumdl-0.0.91.data/scripts/measure_code_span_performance,sha256=li5sxlJqS5R0uoRxKqJbVaVjitQduFg8SgzETfWAG2g,1430480
|
|
7
|
-
rumdl-0.0.91.data/scripts/rumdl,sha256=ajdJ4gdTdLztyo2iFiqiBPIYhTqrHqVtUodcegKa634,5301368
|
|
8
|
-
rumdl-0.0.91.dist-info/METADATA,sha256=HXszBOYsOukm4G2M9sOi4WKSh06ISeVXQnDkmeAIiTk,20278
|
|
9
|
-
rumdl-0.0.91.dist-info/WHEEL,sha256=_ftC59G2lUDVh6DjVQid1lXOEswHzpmZBvGibXyRtww,103
|
|
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
|