module Language.Haskell.Stylish.Config.Internal
( ancestors
) where
import Data.List (inits)
import System.FilePath (joinPath, splitPath)
ancestors :: FilePath -> [FilePath]
ancestors :: FilePath -> [FilePath]
ancestors = forall a b. (a -> b) -> [a] -> [b]
map [FilePath] -> FilePath
joinPath forall b c a. (b -> c) -> (a -> b) -> a -> c
. forall a. [a] -> [a]
reverse forall b c a. (b -> c) -> (a -> b) -> a -> c
. forall a. (a -> Bool) -> [a] -> [a]
dropWhile forall (t :: * -> *) a. Foldable t => t a -> Bool
null forall b c a. (b -> c) -> (a -> b) -> a -> c
. forall a. [a] -> [[a]]
inits forall b c a. (b -> c) -> (a -> b) -> a -> c
. FilePath -> [FilePath]
splitPath