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

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rumdl
3
- Version: 0.0.62
3
+ Version: 0.0.63
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -71,6 +71,7 @@ Project-URL: Repository, https://github.com/rvben/rumdl.git
71
71
  - [Configuration Output](#configuration-output)
72
72
  - [Effective Configuration (`rumdl config`)](#effective-configuration-rumdl-config)
73
73
  - [Defaults Only (`rumdl config --defaults`)](#defaults-only-rumdl-config---defaults)
74
+ - [Editor Integration (LSP)](#editor-integration-lsp)
74
75
  - [Output Style](#output-style)
75
76
  - [Output Format](#output-format)
76
77
  - [Development](#development)
@@ -260,6 +261,11 @@ rumdl <command> [options] [file or directory...]
260
261
  - Subcommands:
261
262
  - `get <key>`: Query a specific config key (e.g. `global.exclude` or `MD013.line_length`)
262
263
 
264
+ - `server`: Start the Language Server Protocol server for editor integration
265
+ - `--port <PORT>`: TCP port to listen on (for debugging)
266
+ - `--stdio`: Use stdio for communication (default)
267
+ - `-v, --verbose`: Enable verbose logging
268
+
263
269
  - `version`: Show version information
264
270
 
265
271
  ### Usage Examples
@@ -412,6 +418,40 @@ code_blocks = true
412
418
  ...
413
419
  ```
414
420
 
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
+
415
455
  ## Output Style
416
456
 
417
457
  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.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,,
@@ -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.62.data/scripts/rumdl.exe,sha256=bV6QIySjPes8FUZkrwQ_i9TBgk-3Gmvgc8Q0p-Q-Rek,9889792
5
- rumdl-0.0.62.dist-info/METADATA,sha256=Uj5gsXHoXkpOjGG-_6j_iJ0PWnn_GBK8d9TjBnHRg9U,15542
6
- rumdl-0.0.62.dist-info/WHEEL,sha256=ezZ0UavAgFc3zAwcynOaW_2bkD5G8wEuJDlcNOURk-k,93
7
- rumdl-0.0.62.dist-info/RECORD,,
File without changes