├── .github └── ISSUE_TEMPLATE │ ├── advice.md │ ├── code-help.md │ ├── lifestyle.md │ └── other.md ├── CODE_OF_CONDUCT.md └── readme.md /.github/ISSUE_TEMPLATE/advice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/ama/HEAD/.github/ISSUE_TEMPLATE/advice.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/code-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/ama/HEAD/.github/ISSUE_TEMPLATE/code-help.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/lifestyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/ama/HEAD/.github/ISSUE_TEMPLATE/lifestyle.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Other 3 | about: Anything else! 4 | 5 | --- 6 | 7 | 8 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/ama/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcdodds/ama/HEAD/readme.md --------------------------------------------------------------------------------