Skip to content

Commit bc1ae33

Browse files
committed
feat: search for .treefmt.toml
This restores treefmt v1 compatibility by also searching for the dot prefixed version of the config file. Fixes #355
1 parent 6df86ef commit bc1ae33

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

cli/cli.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type Format struct {
2020
WorkingDirectory kong.ChangeDirFlag `default:"." short:"C" help:"Run as if treefmt was started in the specified working directory instead of the current working directory."`
2121
NoCache bool `help:"Ignore the evaluation cache entirely. Useful for CI."`
2222
ClearCache bool `short:"c" help:"Reset the evaluation cache. Use in case the cache is not precise enough."`
23-
ConfigFile string `type:"existingfile" help:"Load the config file from the given path (defaults to searching upwards for treefmt.toml)."`
23+
ConfigFile string `type:"existingfile" help:"Load the config file from the given path (defaults to searching upwards for treefmt.toml or .treefmt.toml)."`
2424
FailOnChange bool `help:"Exit with error if any changes were made. Useful for CI."`
2525
Formatters []string `short:"f" help:"Specify formatters to apply. Defaults to all formatters."`
2626
TreeRoot string `type:"existingdir" xor:"tree-root" env:"PRJ_ROOT" help:"The root directory from which treefmt will start walking the filesystem (defaults to the directory containing the config file)."`

cli/format.go

+8-6
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func (f *Format) Run() (err error) {
6666
if err != nil {
6767
return err
6868
}
69-
f.ConfigFile, _, err = findUp(pwd, "treefmt.toml")
69+
f.ConfigFile, _, err = findUp(pwd, "treefmt.toml", ".treefmt.toml")
7070
if err != nil {
7171
return err
7272
}
@@ -496,14 +496,16 @@ func (f *Format) updateCache(ctx context.Context) func() error {
496496
}
497497
}
498498

499-
func findUp(searchDir string, fileName string) (path string, dir string, err error) {
499+
func findUp(searchDir string, fileNames ...string) (path string, dir string, err error) {
500500
for _, dir := range eachDir(searchDir) {
501-
path := filepath.Join(dir, fileName)
502-
if fileExists(path) {
503-
return path, dir, nil
501+
for _, f := range fileNames {
502+
path := filepath.Join(dir, f)
503+
if fileExists(path) {
504+
return path, dir, nil
505+
}
504506
}
505507
}
506-
return "", "", fmt.Errorf("could not find %s in %s", fileName, searchDir)
508+
return "", "", fmt.Errorf("could not find %s in %s", fileNames, searchDir)
507509
}
508510

509511
func eachDir(path string) (paths []string) {

0 commit comments

Comments
 (0)