33All kinds of contributions are very welcome!
44You can contribute in various ways, e.g. by
55
6- * providing feedback
7- * asking questions
8- * suggesting ideas
9- * implementing features
10- * fixing problems
11- * improving documentation
6+ - providing feedback
7+ - asking questions
8+ - suggesting ideas
9+ - implementing features
10+ - fixing problems
11+ - improving documentation
1212
1313To make contributing to open source projects a good experience to everyone involved,
1414please make sure that you follow our code of conduct when communicating with others.
@@ -23,10 +23,10 @@ please create a new issue using one of the provided issue templates.
2323
2424If your issue is caused by incomplete, unclear or outdated documentation,
2525we are also happy to get suggestions on how to improve it.
26- Outdated or incorrect documentation is a * bug * ,
27- while missing documentation is a * feature request * .
26+ Outdated or incorrect documentation is a _ bug _ ,
27+ while missing documentation is a _ feature request _ .
2828
29- ** NOTE:** If you want to report a critical security problem, * do not * open an issue!
29+ ** NOTE:** If you want to report a critical security problem, _ do not _ open an issue!
3030Instead, please create a [ private security advisory] ( https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing/privately-reporting-a-security-vulnerability ) ,
3131or contact the current package maintainers directly by e-mail.
3232
@@ -37,24 +37,24 @@ This project uses [Poetry](https://python-poetry.org/) for dependency management
3737You can run the following lines to check out the project and prepare it for development:
3838
3939```
40- git clone {{ cookiecutter.project_git_path }}
40+ git clone {{ cookiecutter.project_repo_url }}
4141cd {{ cookiecutter.project_slug }}
4242poetry install --with docs
4343poetry run poe init-dev
4444```
4545
4646Common tasks are accessible via [ poe] ( https://github.com/nat-n/poethepoet ) :
4747
48- * Use ` poetry run poe lint ` to run linters manually, add ` --all-files ` to check everything.
48+ - Use ` poetry run poe lint ` to run linters manually, add ` --all-files ` to check everything.
4949
50- * Use ` poetry run poe test ` to run tests, add ` --cov ` to also show test coverage.
50+ - Use ` poetry run poe test ` to run tests, add ` --cov ` to also show test coverage.
5151
52- * Use ` poetry run poe docs ` to generate local documentation
52+ - Use ` poetry run poe docs ` to generate local documentation
5353
5454In order to contribute code, please open a pull request.
5555
5656Before opening the PR, please make sure that your changes
5757
58- * are sufficiently covered by meaningful ** tests** ,
59- * are reflected in suitable ** documentation** (API docs, guides, etc.), and
60- * successfully pass all pre-commit hooks.
58+ - are sufficiently covered by meaningful ** tests** ,
59+ - are reflected in suitable ** documentation** (API docs, guides, etc.), and
60+ - successfully pass all pre-commit hooks.
0 commit comments