rumdl 0.2.21

A fast Markdown linter written in Rust (Ru(st) MarkDown Linter)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Rustfmt configuration for rumdl

# Set maximum line width to 120 characters
max_width = 120

# Reorder imports and module declarations
reorder_imports = true
reorder_modules = true

# Use field initialize shorthand when possible
use_field_init_shorthand = true

# Use try shorthand (? operator)
use_try_shorthand = true

# Edition
edition = "2024"