Print the resolved configuration and the path of the config file that was loaded. Useful for debugging “why isn’t my config being applied?” especially in monorepos where multipleDocumentation Index
Fetch the complete documentation index at: https://docs.fallow.tools/llms.txt
Use this file to discover all available pages before exploring further.
.fallowrc.json files may be in play.
extends resolved):
$ fallow config
Options
| Flag | Description |
|---|---|
--path | Print only the config file path, one line, no JSON. Easier to consume from shell scripts. |
--config <path> flag is honored: if you pass it, that path is loaded directly instead of walking the directory tree.
Exit codes
| Code | Meaning |
|---|---|
0 | A config file was found and loaded |
2 | Error (failed to parse, explicit --config path missing, etc.) |
3 | No config file was found; defaults are in effect |
Examples
Verify which config the LSP/CLI picked up
In a monorepo, when running fallow from inside a sub-package:Use an explicit config file
Pipe to jq for further inspection
loaded config: ...) is on stdout above the JSON, so tail -n +2 skips it.
Detect “no config” in scripts
Related
- Configuration overview: supported config file names and the full schema
- Monorepo configuration: how config discovery works in workspaces