Does the source inclusion/inclusion rules of the package ini accept such path?

Property definitions

nitc :: loader $ MPackage :: accept
	# Does the source inclusion/inclusion rules of the package `ini` accept such path?
	fun accept(filepath: String): Bool
	do
		var excludes = self.excludes
		if excludes != null then
			var relpath = root.filepath.relpath(filepath)
			if excludes.has(relpath) then return false
		end
		return true
	end
src/loader.nit:1193,2--1202,4