├── .editorconfig ├── .github ├── .kodiak.toml └── dependabot.yml ├── .gitignore ├── LICENSE ├── Makefile └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/playground/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/playground/HEAD/.github/.kodiak.toml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/playground/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE 2 | .idea 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/playground/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/playground/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contributte/playground/HEAD/README.md --------------------------------------------------------------------------------