My nix-darwin and NixOS config
at main 13 lines 401 B view raw
1# markdownlint configuration 2# https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md 3 4# MD013: Line length 5# Tables and code blocks are exempt — long lines there are unavoidable. 6# Prose limit raised to 120 to allow natural sentence flow. 7MD013: 8 line_length: 120 9 tables: false 10 code_blocks: false 11 12# MD033: Inline HTML — allowed for badges and image floats in README 13MD033: false