├── .github ├── CODE_OF_CONDUCT.md ├── dependabot.yaml └── workflows │ ├── check-link-rot.yaml │ └── render-README.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── README.md ├── README.pdf ├── README.qmd └── index.html /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/check-link-rot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/.github/workflows/check-link-rot.yaml -------------------------------------------------------------------------------- /.github/workflows/render-README.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/.github/workflows/render-README.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/README.pdf -------------------------------------------------------------------------------- /README.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/README.qmd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndrajeetPatil/awesome-r-pkgtools/HEAD/index.html --------------------------------------------------------------------------------