Is your feature request related to a problem? Please describe.
Right now, .ormolu files have to reside next to a .cabal file.
Fixities can also be overridden if .ormolu file is found next to the corresponding Cabal file, i.e. they should be siblings in the same directory.
Actually, this has to be the "nearest" .cabal file, which can be annoying in a repository with a lot of packages/.cabal files, as you then need one .ormolu file (can be a symlink) per .cabal file for it to apply to all source files.
An example for this is https://github.com/wireapp/wire-server, which currently contains 51 .ormolu files.
Describe the solution you'd like
One approach: We could look for .ormolu files separately from .cabal files.
Is your feature request related to a problem? Please describe.
Right now,
.ormolufiles have to reside next to a.cabalfile.Actually, this has to be the "nearest"
.cabalfile, which can be annoying in a repository with a lot of packages/.cabalfiles, as you then need one.ormolufile (can be a symlink) per.cabalfile for it to apply to all source files.An example for this is https://github.com/wireapp/wire-server, which currently contains 51
.ormolufiles.Describe the solution you'd like
One approach: We could look for
.ormolufiles separately from.cabalfiles.