rumdl 0.0.112__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 +5 -5
- python/rumdl/py.typed +0 -1
- {rumdl-0.0.112.data → rumdl-0.0.114.data}/scripts/rumdl +0 -0
- {rumdl-0.0.112.dist-info → rumdl-0.0.114.dist-info}/METADATA +47 -31
- rumdl-0.0.114.dist-info/RECORD +8 -0
- {rumdl-0.0.112.dist-info → rumdl-0.0.114.dist-info}/licenses/LICENSE +1 -1
- rumdl-0.0.112.dist-info/RECORD +0 -8
- {rumdl-0.0.112.dist-info → rumdl-0.0.114.dist-info}/WHEEL +0 -0
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
|
-
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rumdl
|
|
3
|
-
Version: 0.0.
|
|
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
|
-
- [
|
|
86
|
-
- [
|
|
87
|
-
- [
|
|
88
|
-
- [
|
|
89
|
-
- [
|
|
90
|
-
- [
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
- [
|
|
95
|
-
- [
|
|
96
|
-
- [
|
|
97
|
-
- [
|
|
98
|
-
- [
|
|
99
|
-
- [
|
|
100
|
-
- [
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
- [
|
|
109
|
-
|
|
110
|
-
- [
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
- [
|
|
114
|
-
- [
|
|
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.
|
rumdl-0.0.112.dist-info/RECORD
DELETED
|
@@ -1,8 +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.112.data/scripts/rumdl,sha256=Yihv3uG2Hzd8Czr6CZoLICSWDQQNzNycVrKwHPLxZWg,5996496
|
|
5
|
-
rumdl-0.0.112.dist-info/METADATA,sha256=0Pd7_XgdhDG_ZcrOMP1UA3Eqmf2tzpbZYJSWDvQuoMk,20463
|
|
6
|
-
rumdl-0.0.112.dist-info/WHEEL,sha256=ZiKCVJQyCIbXpOYnG9r5TWsf4V1VNqD20bP8-FGilBA,104
|
|
7
|
-
rumdl-0.0.112.dist-info/licenses/LICENSE,sha256=-DMWkbVE5Jg4GtaZNa3as6TKHpxbalXjYV96RLRuH-E,1078
|
|
8
|
-
rumdl-0.0.112.dist-info/RECORD,,
|
|
File without changes
|