├── .github ├── FUNDING.yml ├── changelog-configuration.yml └── workflows │ ├── Path.yml │ ├── conventional-pr.yml │ └── release.yml ├── .gitignore ├── .mise.toml ├── .mise └── tasks │ ├── lint │ └── lint-fix ├── .swift-version ├── .swiftformat ├── .swiftlint.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── LICENSES └── swift-tools-support-core.md ├── Package.swift ├── Project.swift ├── README.md ├── Sources └── Path │ └── Path.swift ├── Tuist └── Config.swift ├── cliff.toml └── renovate.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/changelog-configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.github/changelog-configuration.yml -------------------------------------------------------------------------------- /.github/workflows/Path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.github/workflows/Path.yml -------------------------------------------------------------------------------- /.github/workflows/conventional-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.github/workflows/conventional-pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.gitignore -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.mise.toml -------------------------------------------------------------------------------- /.mise/tasks/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.mise/tasks/lint -------------------------------------------------------------------------------- /.mise/tasks/lint-fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.mise/tasks/lint-fix -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.9 -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSES/swift-tools-support-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/LICENSES/swift-tools-support-core.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/Package.swift -------------------------------------------------------------------------------- /Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/Project.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Path/Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/Sources/Path/Path.swift -------------------------------------------------------------------------------- /Tuist/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/Tuist/Config.swift -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/cliff.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/Path/HEAD/renovate.json --------------------------------------------------------------------------------