forked from extern/httpie-cli
08751d3672
* Add install/update instructions database * Update the database * Revert README changes They will be overwritten later. * Revert * Tweak * Tweaks * Upgrade database * Complete commands Still not sure about Spack upgrades. * Sort * Doc generation script draft * Remove OS names from tool names * Fix Linuxbrew name * `wheel` already installs `setuptools` * Gen docs * Update * Tweak * Add a GitHub workflow to check for outdated installation instructions * Fix return value * Test * Delete test * Rename the script * Add `make doc-install-inst` * Add missing dev requirement * The first tool is the primary we want to display Then they are simply sorted by `tool.title`. * Sort OSes by name * Refactoring, jinja template, etc. * Add tool title uniqueness `assert`, fix platform list extra `\n` * Rebuild docs * Update generate.py * Update README.md * Update methods.yml * Update distros derived, more assertions * Tweaks * Add workflow to auto-update the docs * Do not hide the command * Tweaks Co-authored-by: Jakub Roztocil <jakub@roztocil.co>
42 lines
923 B
Ruby
42 lines
923 B
Ruby
# Rules for <https://github.com/markdownlint/markdownlint>
|
|
|
|
# Load all rules by default
|
|
all
|
|
|
|
#
|
|
# Tweak rules
|
|
#
|
|
|
|
# MD002 First header should be a top level header
|
|
# Because we use HTML to hide them on the website.
|
|
exclude_rule 'MD002'
|
|
|
|
# MD013 Line length
|
|
exclude_rule 'MD013'
|
|
|
|
# MD014 Dollar signs used before commands without showing output
|
|
exclude_rule 'MD014'
|
|
|
|
# Tell the linter to use ordered lists:
|
|
# 1. Foo
|
|
# 2. Bar
|
|
# 3. Baz
|
|
#
|
|
# Instead of:
|
|
# 1. Foo
|
|
# 1. Bar
|
|
# 1. Baz
|
|
rule 'MD029', :style => :ordered
|
|
|
|
# MD033 Inline HTML
|
|
# TODO: Tweak elements when https://github.com/markdownlint/markdownlint/issues/118 will be done?
|
|
exclude_rule 'MD033'
|
|
|
|
# MD034 Bare URL used
|
|
# TODO: Remove when https://github.com/markdownlint/markdownlint/issues/328 will be fixed.
|
|
exclude_rule 'MD034'
|
|
|
|
# MD041 First line in file should be a top level header
|
|
# Because we use HTML to hide them on the website.
|
|
exclude_rule 'MD041'
|