def filterPath()

in src/main/scala/com/adamnfish/eek/sourcecode/Filesystem.scala [47:50]


  def filterPath(path: Path, rootPath: Path): Boolean = {
    val relativePath = rootPath.relativize(path).toString
    SourceCode.isDocPath(relativePath)
  }