221f7a71bc
Adds five new issue templates (bug_report_detailed, feature_request_detailed, performance_regression, documentation, question) alongside the existing short forms, plus an optional detailed PR template under .github/PULL_REQUEST_TEMPLATE/ that contributors can opt into via the ?template=detailed.md URL. Existing templates keep their behavior; only title prefixes and prose-paren wording were capitalized for consistency.
40 lines
707 B
Markdown
40 lines
707 B
Markdown
---
|
|
name: Bug report
|
|
about: Report incorrect behaviour in Wickra
|
|
title: "[Bug] "
|
|
labels: bug
|
|
assignees: ""
|
|
---
|
|
|
|
## Description
|
|
|
|
<!-- A clear description of what is wrong. -->
|
|
|
|
## Reproduction
|
|
|
|
<!-- Minimal code that reproduces the problem. -->
|
|
|
|
```rust
|
|
// or python / javascript
|
|
```
|
|
|
|
## Expected behaviour
|
|
|
|
<!-- What you expected to happen, ideally with a reference value
|
|
(TA-Lib, pandas-ta, hand-computed). -->
|
|
|
|
## Actual behaviour
|
|
|
|
<!-- What happened instead. -->
|
|
|
|
## Environment
|
|
|
|
- Wickra version:
|
|
- Language / binding: <!-- Rust crate / Python / Node / WASM -->
|
|
- OS and architecture:
|
|
- Rust / Python / Node version (If relevant):
|
|
|
|
## Additional context
|
|
|
|
<!-- Logs, screenshots, anything else. -->
|