├── .gitattributes ├── .github └── workflows │ ├── codeql-analysis.yml │ ├── fossa.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS ├── Makefile ├── README.md ├── SECURITY.md ├── distribution-logo.svg ├── fuzz_test.go ├── go.mod ├── go.sum ├── helpers.go ├── normalize.go ├── normalize_test.go ├── reference.go ├── reference_test.go ├── regexp.go ├── regexp_bench_test.go ├── regexp_test.go ├── sort.go └── sort_test.go /.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/.github/workflows/fossa.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Cover profiles 2 | *.out 3 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/SECURITY.md -------------------------------------------------------------------------------- /distribution-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/distribution-logo.svg -------------------------------------------------------------------------------- /fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/fuzz_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/go.sum -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/helpers.go -------------------------------------------------------------------------------- /normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/normalize.go -------------------------------------------------------------------------------- /normalize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/normalize_test.go -------------------------------------------------------------------------------- /reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/reference.go -------------------------------------------------------------------------------- /reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/reference_test.go -------------------------------------------------------------------------------- /regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/regexp.go -------------------------------------------------------------------------------- /regexp_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/regexp_bench_test.go -------------------------------------------------------------------------------- /regexp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/regexp_test.go -------------------------------------------------------------------------------- /sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/sort.go -------------------------------------------------------------------------------- /sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distribution/reference/HEAD/sort_test.go --------------------------------------------------------------------------------