Where there is an _elm-analyse.json_ like following, elm-analyse includes files like _elm-mdc\src\Internal\Button\Model.elm_ on Windows. ```json { "excludedPaths": [ "elm-mdc/src" ] } ``` Although the following configuration works expectedly, this is inconvenient for Linux or macOS users. ```json { "excludedPaths": [ "elm-mdc\\src" ] } ``` I think that _elm-mdc/src_ must match _elm-mdc\src\foo\Bar.elm_.