Skip to content

Commit

Permalink
add linters to pr template
Browse files Browse the repository at this point in the history
  • Loading branch information
waynehamadi committed May 28, 2023
1 parent 43d97a0 commit 2dc2551
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,13 @@ By following these guidelines, your PRs are more likely to be merged quickly aft
- [ ] I have considered potential risks and mitigations for my changes.
- [ ] I have documented my changes clearly and comprehensively.
- [ ] I have not snuck in any "extra" small tweaks changes. <!-- Submit these as separate Pull Requests, they are the easiest to merge! -->
- [ ] I have run `black .` and `isort .` against my code to ensure it passes our linter.
- [ ] I have run the following commands against my code to ensure it passes our linters:
```shell
black .
isort .
mypy
autoflake --remove-all-unused-imports --recursive --ignore-init-module-imports autogpt tests --in-place
```

<!-- If you haven't added tests, please explain why. If you have, check the appropriate box. If you've ensured your PR is atomic and well-documented, check the corresponding boxes. -->

Expand Down

0 comments on commit 2dc2551

Please sign in to comment.