├── .gitignore ├── README.md ├── highresPNGs ├── .DS_Store ├── build-passing.png ├── code-climate-4.png ├── coverage-100.png ├── dependencies-uptodate.png └── start-with-why-HiRes.png ├── index.html ├── snyk-security-scanning.md └── svg ├── FunTimes-Guaranteed-brightgreen.svg ├── build-passing.svg ├── climate.svg ├── coverage-100.svg ├── customer-satisfaction-100%-brightgreen.svg ├── dependencies.svg ├── job satisfaction-100%-brightgreen-FLAT.svg ├── job satisfaction-100%-brightgreen.svg └── start-with-why.svg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/README.md -------------------------------------------------------------------------------- /highresPNGs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/highresPNGs/.DS_Store -------------------------------------------------------------------------------- /highresPNGs/build-passing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/highresPNGs/build-passing.png -------------------------------------------------------------------------------- /highresPNGs/code-climate-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/highresPNGs/code-climate-4.png -------------------------------------------------------------------------------- /highresPNGs/coverage-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/highresPNGs/coverage-100.png -------------------------------------------------------------------------------- /highresPNGs/dependencies-uptodate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/highresPNGs/dependencies-uptodate.png -------------------------------------------------------------------------------- /highresPNGs/start-with-why-HiRes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/highresPNGs/start-with-why-HiRes.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/index.html -------------------------------------------------------------------------------- /snyk-security-scanning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/snyk-security-scanning.md -------------------------------------------------------------------------------- /svg/FunTimes-Guaranteed-brightgreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/svg/FunTimes-Guaranteed-brightgreen.svg -------------------------------------------------------------------------------- /svg/build-passing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/svg/build-passing.svg -------------------------------------------------------------------------------- /svg/climate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/svg/climate.svg -------------------------------------------------------------------------------- /svg/coverage-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/svg/coverage-100.svg -------------------------------------------------------------------------------- /svg/customer-satisfaction-100%-brightgreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/svg/customer-satisfaction-100%-brightgreen.svg -------------------------------------------------------------------------------- /svg/dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/svg/dependencies.svg -------------------------------------------------------------------------------- /svg/job satisfaction-100%-brightgreen-FLAT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/svg/job satisfaction-100%-brightgreen-FLAT.svg -------------------------------------------------------------------------------- /svg/job satisfaction-100%-brightgreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/svg/job satisfaction-100%-brightgreen.svg -------------------------------------------------------------------------------- /svg/start-with-why.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/repo-badges/HEAD/svg/start-with-why.svg --------------------------------------------------------------------------------