├── .editorconfig ├── .gitattributes ├── .github └── pull_request_template.md ├── contributing.md ├── create-ama.md └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/amas/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/amas/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/amas/HEAD/contributing.md -------------------------------------------------------------------------------- /create-ama.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/amas/HEAD/create-ama.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/amas/HEAD/readme.md --------------------------------------------------------------------------------