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
50 changes: 50 additions & 0 deletions .github/ISSUE_TEMPLATE/config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
name: Configuration / Environment
about: Issues related to configuration, environment variables, or deployment
title: '[CONFIG] '
labels: configuration
assignees: ''
---

**Type of configuration issue**
- [ ] Environment variable
- [ ] Docker configuration
- [ ] API configuration
- [ ] Build configuration
- [ ] Runtime configuration
- [ ] Other

**Component**
Which component is this issue related to?
- [ ] Backend
- [ ] Frontend
- [ ] AI Engine
- [ ] Database
- [ ] CI/CD
- [ ] Other

**Describe the issue**
A clear and concise description of the configuration issue.

**Environment details**
- OS: [e.g. Ubuntu 22.04]
- Docker version: [e.g. 24.0]
- Node version: [e.g. 20.x]
- Python version: [e.g. 3.11]

**Configuration files**
List any relevant configuration files:
```
Config files here
```

**Steps to reproduce**
1. Go to '...'
2. Click on '...'
3. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Additional context**
Add any other context about the configuration issue here.
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Documentation
about: Suggest improvements or report issues with the documentation
title: '[DOCS] '
labels: documentation
assignees: ''
---

**Type of documentation issue**
- [ ] Typo or grammatical error
- [ ] Missing information
- [ ] Outdated information
- [ ] Unclear explanation
- [ ] Missing example
- [ ] Other

**Page or section**
Which page or section does this issue relate to? (e.g., "README.md - Installation section")

**Describe the issue**
A clear and concise description of what the problem is with the documentation.

**Suggested improvement**
If applicable, describe how you would improve the documentation.

**Additional context**
Add any other context about the documentation issue here.
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Question
about: Ask a question or start a discussion about ModPorter AI
title: '[QUESTION] '
labels: question
assignees: ''
---

**Question**
What do you want to ask or discuss?

**Context**
Provide any context that might help others understand your question.

**What have you already tried?**
Describe any steps you've already taken to find the answer.

**Additional context**
Add any other context about your question here.
1 change: 0 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
{
"files": "*.py",
"options": {
"parser": "python",
"tabWidth": 4
}
}
Comment on lines 18 to 23
Copy link

Copilot AI Mar 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prettier does not format Python files without an appropriate plugin/parser; keeping a *.py override can be confusing and prettier runs over .py files may still fail with 'No parser could be inferred'. Consider either adding a Python Prettier plugin (and the corresponding parser setting) or removing/ignoring *.py from Prettier runs (e.g., via .prettierignore or limiting CLI globs).

Copilot uses AI. Check for mistakes.
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/jest": "^30.0.0",
"concurrently": "^9.2.1"
"concurrently": "^9.2.1",
"prettier": "^3.8.1"
},
"overrides": {
"form-data@>=4.0.0 <4.0.4": ">=4.0.4",
Expand Down
Loading
Loading