rumdl 0.0.63__py3-none-win_amd64.whl → 0.0.64__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.
|
|
3
|
+
Version: 0.0.64
|
|
4
4
|
Classifier: Development Status :: 4 - Beta
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -70,8 +70,8 @@ Project-URL: Repository, https://github.com/rvben/rumdl.git
|
|
|
70
70
|
- [Configuration in pyproject.toml](#configuration-in-pyprojecttoml)
|
|
71
71
|
- [Configuration Output](#configuration-output)
|
|
72
72
|
- [Effective Configuration (`rumdl config`)](#effective-configuration-rumdl-config)
|
|
73
|
-
- [
|
|
74
|
-
|
|
73
|
+
- [Example output](#example-output)
|
|
74
|
+
- [Defaults Only (`rumdl config --defaults`)](#defaults-only-rumdl-config---defaults)
|
|
75
75
|
- [Output Style](#output-style)
|
|
76
76
|
- [Output Format](#output-format)
|
|
77
77
|
- [Development](#development)
|
|
@@ -377,9 +377,10 @@ Both kebab-case (`line-length`, `ignore-gitignore`) and snake_case (`line_length
|
|
|
377
377
|
|
|
378
378
|
#### Effective Configuration (`rumdl config`)
|
|
379
379
|
|
|
380
|
-
The `rumdl config` command prints the **full effective configuration** (defaults + all overrides), showing every key and its value, annotated with the source of each value.
|
|
380
|
+
The `rumdl config` command prints the **full effective configuration** (defaults + all overrides), showing every key and its value, annotated with the source of each value.
|
|
381
|
+
The output is colorized and the `[from ...]` annotation is globally aligned for easy scanning.
|
|
381
382
|
|
|
382
|
-
|
|
383
|
+
#### Example output
|
|
383
384
|
|
|
384
385
|
```text
|
|
385
386
|
[global]
|
|
@@ -393,6 +394,7 @@ The `rumdl config` command prints the **full effective configuration** (defaults
|
|
|
393
394
|
code_blocks = true [from .rumdl.toml]
|
|
394
395
|
...
|
|
395
396
|
```
|
|
397
|
+
|
|
396
398
|
- **Keys** are cyan, **values** are yellow, and the `[from ...]` annotation is colored by source:
|
|
397
399
|
- Green: CLI
|
|
398
400
|
- Blue: `.rumdl.toml`
|
|
@@ -400,7 +402,7 @@ The `rumdl config` command prints the **full effective configuration** (defaults
|
|
|
400
402
|
- Yellow: default
|
|
401
403
|
- The `[from ...]` column is aligned across all sections.
|
|
402
404
|
|
|
403
|
-
|
|
405
|
+
### Defaults Only (`rumdl config --defaults`)
|
|
404
406
|
|
|
405
407
|
The `--defaults` flag prints only the default configuration as TOML, suitable for copy-paste or reference:
|
|
406
408
|
|
|
@@ -418,40 +420,6 @@ code_blocks = true
|
|
|
418
420
|
...
|
|
419
421
|
```
|
|
420
422
|
|
|
421
|
-
## Editor Integration (LSP)
|
|
422
|
-
|
|
423
|
-
rumdl includes a built-in Language Server Protocol (LSP) implementation for real-time markdown linting in your favorite editor. Following [Ruff's approach](https://docs.astral.sh/ruff/editors/), the LSP server is built directly into the main `rumdl` binary.
|
|
424
|
-
|
|
425
|
-
### Starting the LSP Server
|
|
426
|
-
|
|
427
|
-
```bash
|
|
428
|
-
# Standard mode (stdio) - default
|
|
429
|
-
rumdl server
|
|
430
|
-
|
|
431
|
-
# Explicit stdio mode
|
|
432
|
-
rumdl server --stdio
|
|
433
|
-
|
|
434
|
-
# Debug mode (TCP)
|
|
435
|
-
rumdl server --port 8080 --verbose
|
|
436
|
-
```
|
|
437
|
-
|
|
438
|
-
### Supported Editors
|
|
439
|
-
|
|
440
|
-
- **VS Code**: Use the official rumdl extension (coming soon)
|
|
441
|
-
- **Neovim**: Configure with nvim-lspconfig
|
|
442
|
-
- **Emacs**: Use with lsp-mode
|
|
443
|
-
- **Sublime Text**: Use with LSP package
|
|
444
|
-
- **Any LSP-compatible editor**
|
|
445
|
-
|
|
446
|
-
For detailed setup instructions, see our [LSP Setup Guide](docs/lsp-setup.md).
|
|
447
|
-
|
|
448
|
-
### LSP Features
|
|
449
|
-
|
|
450
|
-
- **Real-time diagnostics** - See markdown linting errors as you type
|
|
451
|
-
- **Code actions** - One-click fixes for violations (where available)
|
|
452
|
-
- **Configuration support** - Respects your `.rumdl.toml` configuration
|
|
453
|
-
- **Performance optimized** - Built in Rust with all our performance optimizations
|
|
454
|
-
|
|
455
423
|
## Output Style
|
|
456
424
|
|
|
457
425
|
rumdl produces clean, colorized output similar to modern linting tools:
|
|
@@ -0,0 +1,7 @@
|
|
|
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.64.data/scripts/rumdl.exe,sha256=ptmqJbGe2g2FWtwnU-9rO9vjS3yYNZxygXbgDTsfHnc,9871360
|
|
5
|
+
rumdl-0.0.64.dist-info/METADATA,sha256=VCn0aphOGyq5SEM1IQKno-G5o1FXkYOOTP4S_mzgCxc,15824
|
|
6
|
+
rumdl-0.0.64.dist-info/WHEEL,sha256=ezZ0UavAgFc3zAwcynOaW_2bkD5G8wEuJDlcNOURk-k,93
|
|
7
|
+
rumdl-0.0.64.dist-info/RECORD,,
|
rumdl-0.0.63.dist-info/RECORD
DELETED
|
@@ -1,7 +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.63.data/scripts/rumdl.exe,sha256=HlK_Ooe0e5Ivgt4dPxuw-Zra4xilVRAxTdNnliNL_L4,9885696
|
|
5
|
-
rumdl-0.0.63.dist-info/METADATA,sha256=hxpTqeglz8E9blfcsqSdFkBxFT-3KL-EbRylOBOnpsE,16976
|
|
6
|
-
rumdl-0.0.63.dist-info/WHEEL,sha256=ezZ0UavAgFc3zAwcynOaW_2bkD5G8wEuJDlcNOURk-k,93
|
|
7
|
-
rumdl-0.0.63.dist-info/RECORD,,
|
|
File without changes
|