-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add pre-commit * Add GA
- Loading branch information
Showing
16 changed files
with
133 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,43 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
name: Bug Report | ||
about: Use to report a bug | ||
title: '' | ||
labels: bug, help wanted | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
## Bug Report | ||
|
||
### Description | ||
|
||
Provide a brief overview of the bug encountered. Describe the behavior observed when the bug occurs and explain the behavior expected when the bug is not present. | ||
|
||
### Reproducibility | ||
|
||
- [ ] The bug is reproducible. | ||
- [ ] The bug is intermittent. | ||
- [ ] The bug occurs only under specific conditions. | ||
|
||
#### Steps to Reproduce | ||
|
||
1. List the steps to reproduce the bug. | ||
2. Be as detailed as possible to help with replication. | ||
|
||
#### Screenshots / Error Messages (if applicable) | ||
|
||
Insert any relevant screenshots or error messages related to the bug. | ||
|
||
#### Environment | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
- **Operating System**: [e.g., Windows 10, macOS, Linux] | ||
- **Browser (if applicable)**: [e.g., Google Chrome, Firefox, Safari] | ||
- **Application Version/Commit**: [e.g., v1.2.3, Git commit hash] | ||
- **Additional Environment Details**: [e.g., hardware specifications, network conditions] | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
### Additional Context | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
Provide any additional context or information about the bug. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Version [e.g. 22] | ||
### Possible Fix | ||
|
||
**Additional context** | ||
Add any other context about the problem here. | ||
If you have suggestions for a fix, please describe them here. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,30 @@ | ||
### Summary :memo: | ||
_Write an overview about it._ | ||
# Pull Request Template | ||
|
||
### Details | ||
_Describe more what you did on changes._ | ||
1. (...) | ||
2. (...) | ||
## Description | ||
|
||
### Bugfixes :bug: (delete if dind't have any) | ||
- | ||
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. | ||
|
||
### Checks | ||
- [ ] Closed #798 | ||
- [ ] Tested Changes | ||
- [ ] Stakeholder Approval | ||
Fixes #(issue) | ||
|
||
## Type of change | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] Documentation update | ||
|
||
## Checklist | ||
|
||
- [ ] My code follows the style guidelines of this project | ||
- [ ] I have performed a self-review of my own code | ||
- [ ] I have commented my code, particularly in hard-to-understand areas | ||
- [ ] I have made corresponding changes to the documentation | ||
- [ ] My changes generate no new warnings | ||
- [ ] I have added tests that prove my fix is effective or that my feature works | ||
- [ ] New and existing unit tests pass locally with my changes | ||
|
||
## Screenshots (if appropriate) | ||
|
||
## Additional context | ||
|
||
Add any other context about the pull request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ updates: | |
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
interval: "monthly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,6 +154,7 @@ node_modules | |
# Documentation | ||
_build/ | ||
|
||
# Data | ||
# Project-specific | ||
.jupyter/ | ||
*.tif | ||
*.h5 | ||
*.h5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.2.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-added-large-files | ||
- id: check-ast | ||
- id: check-json | ||
- id: detect-aws-credentials | ||
args: [--allow-missing-credentials] | ||
- id: detect-private-key | ||
- repo: https://github.com/igorshubovych/markdownlint-cli | ||
rev: v0.39.0 | ||
hooks: | ||
- id: markdownlint | ||
name: Markdownlint | ||
files: \.(md|mdown|markdown)$ | ||
args: [ | ||
"--disable=MD013", # line-length | ||
"--disable=MD033", # no-inline-html | ||
] | ||
- repo: https://github.com/codespell-project/codespell | ||
rev: v2.2.4 | ||
hooks: | ||
- id: codespell | ||
name: codespell | ||
description: Checks for common misspellings in text files. | ||
entry: codespell --skip="*.js,*.html,*.css, *.svg" | ||
exclude: | | ||
(?x)^( | ||
examples/blackmarblepy.ipynb| | ||
examples/quality-assessment.ipynb| | ||
)$ | ||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
rev: v0.2.1 | ||
hooks: | ||
- id: ruff | ||
types_or: [python, pyi, jupyter] | ||
args: [--fix] | ||
- id: ruff-format | ||
types_or: [python, pyi, jupyter] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.