├── .github ├── .markdown-link-check.json ├── .markdownlint.yml ├── .yamllint.yml ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── feature-request.yml │ ├── release-removal.yml │ └── rename.yml ├── dependabot.yml ├── label-configuration-files │ └── labels.yml └── workflows │ ├── assets │ └── accesslist.yml │ ├── check-license.yml │ ├── check-markdown.yml │ ├── check-prettier-formatting.yml │ ├── check-toc.yml │ ├── check-workflows.yml │ ├── check-yaml.yml │ ├── manage-prs.yml │ ├── spell-check.yml │ └── sync-labels.yml ├── FAQ.md ├── LICENSE.txt ├── README.md └── repositories.txt /.github/.markdown-link-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/.markdown-link-check.json -------------------------------------------------------------------------------- /.github/.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/.markdownlint.yml -------------------------------------------------------------------------------- /.github/.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/.yamllint.yml -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/release-removal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/ISSUE_TEMPLATE/release-removal.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/ISSUE_TEMPLATE/rename.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/label-configuration-files/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/label-configuration-files/labels.yml -------------------------------------------------------------------------------- /.github/workflows/assets/accesslist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/workflows/assets/accesslist.yml -------------------------------------------------------------------------------- /.github/workflows/check-license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/workflows/check-license.yml -------------------------------------------------------------------------------- /.github/workflows/check-markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/workflows/check-markdown.yml -------------------------------------------------------------------------------- /.github/workflows/check-prettier-formatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/workflows/check-prettier-formatting.yml -------------------------------------------------------------------------------- /.github/workflows/check-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/workflows/check-toc.yml -------------------------------------------------------------------------------- /.github/workflows/check-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/workflows/check-workflows.yml -------------------------------------------------------------------------------- /.github/workflows/check-yaml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/workflows/check-yaml.yml -------------------------------------------------------------------------------- /.github/workflows/manage-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/workflows/manage-prs.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/README.md -------------------------------------------------------------------------------- /repositories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/library-registry/HEAD/repositories.txt --------------------------------------------------------------------------------