Skip to content

Commit f4336fd

Browse files
committed
feat(docs): auto-generate usage snippet
Prevents drift when manually maintaining this. Signed-off-by: Brian McGee <[email protected]>
1 parent 3828aaf commit f4336fd

File tree

4 files changed

+11
-25
lines changed

4 files changed

+11
-25
lines changed

docs/hooks.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import os
2+
3+
def on_pre_build(**kwargs):
4+
os.system('nix run .#treefmt -- --help > ./snippets/usage.txt')

docs/mkdocs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,6 @@ plugins:
111111
- awesome-pages
112112
- mike
113113
- search
114+
115+
hooks:
116+
- hooks.py

docs/site/getting-started/usage.md

+2-25
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,8 @@ outline: deep
66

77
`treefmt` has the following specification:
88

9-
```
10-
Usage:
11-
treefmt <paths...> [flags]
12-
13-
Flags:
14-
--allow-missing-formatter Do not exit with error if a configured formatter is missing. (env $TREEFMT_ALLOW_MISSING_FORMATTER)
15-
--ci Runs treefmt in a CI mode, enabling --no-cache, --fail-on-change and adjusting some other settings best suited to a CI use case. (env $TREEFMT_CI)
16-
-c, --clear-cache Reset the evaluation cache. Use in case the cache is not precise enough. (env $TREEFMT_CLEAR_CACHE)
17-
--completion string [bash|zsh|fish] Generate shell completion scripts for the specified shell.
18-
--config-file string Load the config file from the given path (defaults to searching upwards for treefmt.toml or .treefmt.toml).
19-
--cpu-profile string The file into which a cpu profile will be written. (env $TREEFMT_CPU_PROFILE)
20-
--excludes strings Exclude files or directories matching the specified globs. (env $TREEFMT_EXCLUDES)
21-
--fail-on-change Exit with error if any changes were made. Useful for CI. (env $TREEFMT_FAIL_ON_CHANGE)
22-
-f, --formatters strings Specify formatters to apply. Defaults to all configured formatters. (env $TREEFMT_FORMATTERS)
23-
-h, --help help for treefmt
24-
-i, --init Create a treefmt.toml file in the current directory.
25-
--no-cache Ignore the evaluation cache entirely. Useful for CI. (env $TREEFMT_NO_CACHE)
26-
-u, --on-unmatched string Log paths that did not match any formatters at the specified log level. Possible values are <debug|info|warn|error|fatal>. (env $TREEFMT_ON_UNMATCHED) (default "warn")
27-
--stdin Format the context passed in via stdin.
28-
--tree-root string The root directory from which treefmt will start walking the filesystem (defaults to the directory containing the config file). (env $TREEFMT_TREE_ROOT)
29-
--tree-root-file string File to search for to find the tree root (if --tree-root is not passed). (env $TREEFMT_TREE_ROOT_FILE)
30-
-v, --verbose count Set the verbosity of logs e.g. -vv. (env $TREEFMT_VERBOSE)
31-
--version version for treefmt
32-
--walk string The method used to traverse the files within the tree root. Currently supports <auto|git|filesystem>. (env $TREEFMT_WALK) (default "auto")
33-
-C, --working-dir string Run as if treefmt was started in the specified working directory instead of the current working directory. (env $TREEFMT_WORKING_DIR) (default ".")
9+
```console
10+
--8<-- "docs/snippets/usage.txt"
3411
```
3512

3613
Typically, you will execute `treefmt` from the root of your repository with no arguments:

docs/snippets/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# this is generated
2+
usage.txt

0 commit comments

Comments
 (0)