├── .gitignore ├── 0._SPDX_Contributor_License_Agreement.md ├── 1._Community_Specification_License-v1.md ├── 2._Scope.md ├── 3._Notices.md ├── 4._License.md ├── 5._Governance.md ├── 6._Contributing.md ├── 7._Code_of_Conduct.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: CC0-1.0 2 | 3 | *.swp 4 | -------------------------------------------------------------------------------- /0._SPDX_Contributor_License_Agreement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/governance/HEAD/0._SPDX_Contributor_License_Agreement.md -------------------------------------------------------------------------------- /1._Community_Specification_License-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/governance/HEAD/1._Community_Specification_License-v1.md -------------------------------------------------------------------------------- /2._Scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/governance/HEAD/2._Scope.md -------------------------------------------------------------------------------- /3._Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/governance/HEAD/3._Notices.md -------------------------------------------------------------------------------- /4._License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/governance/HEAD/4._License.md -------------------------------------------------------------------------------- /5._Governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/governance/HEAD/5._Governance.md -------------------------------------------------------------------------------- /6._Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/governance/HEAD/6._Contributing.md -------------------------------------------------------------------------------- /7._Code_of_Conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/governance/HEAD/7._Code_of_Conduct.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdx/governance/HEAD/README.md --------------------------------------------------------------------------------