Skip to content

Commit

Permalink
feat: added pull request template (#28)
Browse files Browse the repository at this point in the history
* chore: update dependencies in pyproject.toml

* chore: update Ruff version to v0.6.7 and add linting and formatting hooks

* feat: added pull request template
  • Loading branch information
MountainGod2 authored Sep 27, 2024
1 parent e4736e7 commit 3e80b23
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 88 deletions.
21 changes: 21 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
* **Please check if the PR fulfills these requirements**

- [ ] The commit message follows the guidelines
- [ ] Tests for the changes have been added (for bug fixes/features)
- [ ] Docs have been added / updated (for bug fixes / features)


* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)


* **What is the current behavior?** (You can also link to an open issue here)


* **What is the new behavior (if this is a feature change)?**


* **Does this PR introduce a breaking change?** (What changes might users need to make in their application due to this PR?)


* **Other information**:

9 changes: 3 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,8 @@ repos:
- id: check-added-large-files

- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.4.1
rev: v0.6.7 # Ruff version
hooks:
# Run the linter.
- id: ruff
- id: ruff # Linting
args: [ --fix ]
# Run the formatter.
- id: ruff-format
- id: ruff-format # Formatting
Loading

0 comments on commit 3e80b23

Please sign in to comment.