├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── check-links.yml ├── LICENSE └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/DevYouTubeList/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/check-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/DevYouTubeList/HEAD/.github/workflows/check-links.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/DevYouTubeList/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/DevYouTubeList/HEAD/README.md --------------------------------------------------------------------------------