├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── LICENSE ├── README.rst └── docs ├── code-of-conduct.rst └── contributing.rst /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/globalfoundries-pdks/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/globalfoundries-pdks/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/globalfoundries-pdks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/globalfoundries-pdks/HEAD/README.rst -------------------------------------------------------------------------------- /docs/code-of-conduct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/globalfoundries-pdks/HEAD/docs/code-of-conduct.rst -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/globalfoundries-pdks/HEAD/docs/contributing.rst --------------------------------------------------------------------------------