Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/contributing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ built on top of them. We also have our own dependencies that we use for our
to contribute to Pallets.

[ecosystem]: ../ecosystem.md
[development environment]: layout
[development environment]: layout.md

Writing code is not the only way to contribute to an open source project. Other
activities are just as helpful. Some ideas that are too broad for individual
Expand Down
2 changes: 2 additions & 0 deletions content/contributing/issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,5 @@ following information in your post:
exception.
- List the version of Python and the project you're using. Check if this issue
is already fixed in the latest release, or in `stable` or `main`.

[minimal reproducible example]: https://stackoverflow.com/help/minimal-reproducible-example
8 changes: 4 additions & 4 deletions content/contributing/pr.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ See the following guides for each part:

- [Tests](tests.md) - Add tests that demonstrate that your code works, and
ensure all tests pass. Run `pytest` to run all tests.
- [Static Typing](typing.md) - Run `mypy` to check static typing.
- Static Typing - Run `mypy` to check static typing.
- [Documentation](docs.md) - If behavior has changed somehow, check if any
documentation pages or docstrings need to be updated.
- [Changelog](changes.md) - Adding a change log entry is optional. A maintainer
- Changelog - Adding a change log entry is optional. A maintainer
will write one if you're not sure how to. Don't add an entry for changes that
only affect documentation or tool config.
- [Style](style.md) - pre-commit automatically applies lint and format checks.
- Style - pre-commit automatically applies lint and format checks.

### Multiple Authors

Expand Down Expand Up @@ -100,7 +100,7 @@ $ git merge --continue
$ git rebase --continue
```

See [Help with Git](git.md) for more information about rebasing.
See Help with Git for more information about rebasing.

## PR Scope

Expand Down
Loading