rumdl 0.0.111__py3-none-musllinux_1_2_x86_64.whl → 0.0.114__py3-none-musllinux_1_2_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.

python/rumdl/__main__.py CHANGED
@@ -16,13 +16,13 @@ def find_native_binary() -> str:
16
16
  target_binary = project_root / "target" / "release" / "rumdl"
17
17
  if target_binary.exists() and not target_binary.is_dir():
18
18
  return str(target_binary)
19
-
19
+
20
20
  # For Windows, check for .exe extension
21
21
  if sys.platform == "win32":
22
22
  target_binary = project_root / "target" / "release" / "rumdl.exe"
23
23
  if target_binary.exists() and not target_binary.is_dir():
24
24
  return str(target_binary)
25
-
25
+
26
26
  # If we can't find the binary, raise an error
27
27
  raise FileNotFoundError(
28
28
  "Could not find the native rumdl binary. "
@@ -34,10 +34,10 @@ def main() -> int:
34
34
  try:
35
35
  # Find the native binary
36
36
  native_binary = find_native_binary()
37
-
37
+
38
38
  # Simply forward all arguments to the Rust binary
39
39
  args = [native_binary] + sys.argv[1:]
40
-
40
+
41
41
  # Run the binary
42
42
  if sys.platform == "win32":
43
43
  completed_process = subprocess.run(args)
@@ -54,4 +54,4 @@ def main() -> int:
54
54
  return 1
55
55
 
56
56
  if __name__ == "__main__":
57
- sys.exit(main())
57
+ sys.exit(main())
python/rumdl/py.typed CHANGED
@@ -1 +0,0 @@
1
-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rumdl
3
- Version: 0.0.111
3
+ Version: 0.0.114
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -82,36 +82,52 @@ It offers:
82
82
 
83
83
  ## Table of Contents
84
84
 
85
- - [Quick Start](#quick-start)
86
- - [Overview](#overview)
87
- - [Installation](#installation)
88
- - [Using Homebrew (macOS/Linux)](#using-homebrew-macoslinux)
89
- - [Using Cargo (Rust)](#using-cargo-rust)
90
- - [Using pip (Python)](#using-pip-python)
91
- - [Using uv](#using-uv)
92
- - [Download binary](#download-binary)
93
- - [VS Code Extension](#vs-code-extension)
94
- - [Usage](#usage)
95
- - [Pre-commit Integration](#pre-commit-integration)
96
- - [Rules](#rules)
97
- - [Command-line Interface](#command-line-interface)
98
- - [Commands](#commands)
99
- - [Usage Examples](#usage-examples)
100
- - [Configuration](#configuration)
101
- - [Configuration File Example](#configuration-file-example)
102
- - [Initializing Configuration](#initializing-configuration)
103
- - [Configuration in pyproject.toml](#configuration-in-pyproject-toml)
104
- - [Configuration Output](#configuration-output)
105
- - [Effective Configuration (`rumdl config`)](#effective-configuration-rumdl-config)
106
- - [Example output](#example-output)
107
- - [Defaults Only (`rumdl config --defaults`)](#defaults-only-rumdl-config-defaults)
108
- - [Output Style](#output-style)
109
- - [Output Format](#output-format)
110
- - [Development](#development)
111
- - [Prerequisites](#prerequisites)
112
- - [Building](#building)
113
- - [Testing](#testing)
114
- - [License](#license)
85
+ - [rumdl - A high-performance Markdown linter, written in Rust](#rumdl---a-high-performance-markdown-linter-written-in-rust)
86
+ - [A modern Markdown linter and formatter, built for speed with Rust](#a-modern-markdown-linter-and-formatter-built-for-speed-with-rust)
87
+ - [Quick Start](#quick-start)
88
+ - [Overview](#overview)
89
+ - [Table of Contents](#table-of-contents)
90
+ - [Installation](#installation)
91
+ - [Using Homebrew (macOS/Linux)](#using-homebrew-macoslinux)
92
+ - [Using Cargo (Rust)](#using-cargo-rust)
93
+ - [Using pip (Python)](#using-pip-python)
94
+ - [Using uv](#using-uv)
95
+ - [Download binary](#download-binary)
96
+ - [VS Code Extension](#vs-code-extension)
97
+ - [Usage](#usage)
98
+ - [Pre-commit Integration](#pre-commit-integration)
99
+ - [Rules](#rules)
100
+ - [Command-line Interface](#command-line-interface)
101
+ - [Commands](#commands)
102
+ - [`check [PATHS...]`](#check-paths)
103
+ - [`init [OPTIONS]`](#init-options)
104
+ - [`import <FILE> [OPTIONS]`](#import-file-options)
105
+ - [`rule [<rule>]`](#rule-rule)
106
+ - [`config [OPTIONS] [COMMAND]`](#config-options-command)
107
+ - [`server [OPTIONS]`](#server-options)
108
+ - [`vscode [OPTIONS]`](#vscode-options)
109
+ - [`version`](#version)
110
+ - [Global Options](#global-options)
111
+ - [Exit Codes](#exit-codes)
112
+ - [Usage Examples](#usage-examples)
113
+ - [Configuration](#configuration)
114
+ - [Markdownlint Migration](#markdownlint-migration)
115
+ - [Configuration File Example](#configuration-file-example)
116
+ - [Initializing Configuration](#initializing-configuration)
117
+ - [Configuration in pyproject.toml](#configuration-in-pyprojecttoml)
118
+ - [Configuration Output](#configuration-output)
119
+ - [Effective Configuration (`rumdl config`)](#effective-configuration-rumdl-config)
120
+ - [Example output](#example-output)
121
+ - [Defaults Only (`rumdl config --defaults`)](#defaults-only-rumdl-config---defaults)
122
+ - [Output Style](#output-style)
123
+ - [Output Format](#output-format)
124
+ - [Text Output (Default)](#text-output-default)
125
+ - [JSON Output](#json-output)
126
+ - [Development](#development)
127
+ - [Prerequisites](#prerequisites)
128
+ - [Building](#building)
129
+ - [Testing](#testing)
130
+ - [License](#license)
115
131
 
116
132
  ## Installation
117
133
 
@@ -0,0 +1,8 @@
1
+ python/rumdl/__init__.py,sha256=En6tBgSj-MMeUcBAV7HlMjfstzY6npWxZtsRa30hIj0,90
2
+ python/rumdl/__main__.py,sha256=6JiDzauqRloCD8LQ_edF-T_RHmoiTWLyMvHjqARL05s,1879
3
+ python/rumdl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ rumdl-0.0.114.data/scripts/rumdl,sha256=uAEwiF-7BZ-huV0f1bra_qxeHV_Y1h51aJtuWUHa6fg,6005144
5
+ rumdl-0.0.114.dist-info/METADATA,sha256=i_PTGr-9Er6eNuv5ffBinILr6brMZ0CuYcQQEa_32-Y,21417
6
+ rumdl-0.0.114.dist-info/WHEEL,sha256=ZiKCVJQyCIbXpOYnG9r5TWsf4V1VNqD20bP8-FGilBA,104
7
+ rumdl-0.0.114.dist-info/licenses/LICENSE,sha256=Ux7uE0WuoLktCyy3w5lLIz3_6dc47R0qauPN30mz13M,1079
8
+ rumdl-0.0.114.dist-info/RECORD,,
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
21
+ SOFTWARE.
@@ -1,9 +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.111.data/scripts/debug_frontmatter,sha256=lBi0q2o_IEfOPPmCGEwwcMbj2-wjblkBfHsLo6u8nRk,1532368
5
- rumdl-0.0.111.data/scripts/rumdl,sha256=4fvsy5j-uclHlVai6-Fkro9bDEOVS00VoKsVKa63vi0,5992080
6
- rumdl-0.0.111.dist-info/METADATA,sha256=hLsBEtS6nWmZo9lKHuVD2z-PyiTMal4C5Rt2FgIgfOI,20463
7
- rumdl-0.0.111.dist-info/WHEEL,sha256=ZiKCVJQyCIbXpOYnG9r5TWsf4V1VNqD20bP8-FGilBA,104
8
- rumdl-0.0.111.dist-info/licenses/LICENSE,sha256=-DMWkbVE5Jg4GtaZNa3as6TKHpxbalXjYV96RLRuH-E,1078
9
- rumdl-0.0.111.dist-info/RECORD,,