├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── maintenance.md └── PULL_REQUEST_TEMPLATE │ ├── pull_request_template.md │ └── vulnerability.md ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── DISCLAIMER.md ├── LICENSE ├── README.md ├── code-of-conduct.md ├── open_practices.md ├── rules_of_behavior.md └── thanks.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/.github/ISSUE_TEMPLATE/maintenance.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/vulnerability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/.github/PULL_REQUEST_TEMPLATE/vulnerability.md -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /open_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/open_practices.md -------------------------------------------------------------------------------- /rules_of_behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/rules_of_behavior.md -------------------------------------------------------------------------------- /thanks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDCgov/template/HEAD/thanks.md --------------------------------------------------------------------------------