├── .gitattributes ├── .editorconfig └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [*.md] 11 | trim_trailing_whitespace = false 12 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Ask me anything! 2 | 3 | ## [Ask a question](../../issues/new)     [Read questions](../../issues?q=is%3Aissue+is%3Aclosed) 4 | 5 | I get a lot of questions by email. This way anyone can read the answer! 6 | 7 | Anything means *anything*. Personal questions. Money. Work. Life. Code. Whatever. 8 | 9 | - 10 | 11 | ### Guidelines 12 | 13 | - Ensure your question hasn't already been answered. 14 | - Use a succinct title and description. 15 | - Bugs & feature requests should be opened on the relevant issue tracker. 16 | - Support questions are better asked on Stack Overflow. 17 | - Be civil and polite :) 18 | 19 | ### Links 20 | 21 | - [Read more AMAs](https://github.com/sindresorhus/amas) 22 | - [Create your own AMA](https://github.com/sindresorhus/amas/blob/master/create-ama.md) 23 | - [What's an AMA?](https://en.wikipedia.org/wiki/Reddit#IAmA_and_AMA) 24 | --------------------------------------------------------------------------------