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
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/010-bug.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 🐛 Bug Report
description: Report unexpected behavior, crashes, or defects.
title: "[Bug]: "
labels: ["bug"]
title: '[Bug]: '
labels: ['bug']
body:
- type: markdown
attributes:
Expand Down Expand Up @@ -67,4 +67,4 @@ body:
label: Additional Context
placeholder: browser, logs, etc.
validations:
required: false
required: false
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/020-feature.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: ✨ Feature Request
description: Suggest a new idea or enhancement
title: "[Feature]: "
labels: ["feature"]
title: '[Feature]: '
labels: ['feature']
body:
- type: checkboxes
id: prerequisites
Expand Down Expand Up @@ -48,4 +48,4 @@ body:
- type: textarea
attributes:
label: Additional Context
placeholder: Screenshots, mockups, or related issues.
placeholder: Screenshots, mockups, or related issues.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/030-doc.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 📚 Documentation
description: Fix typos, clarify docs, or add missing information
title: "[Docs]: "
labels: ["docs"]
title: '[Docs]: '
labels: ['docs']
body:
- type: textarea
id: location
Expand All @@ -22,4 +22,4 @@ body:
id: proposal
attributes:
label: Proposed Changes
description: How should this be fixed/updated?
description: How should this be fixed/updated?
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/040-ui.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 🎨 UI/UX Feedback
description: Suggest visual, usability, or interaction improvements
title: "[UI]: "
labels: ["ui/ux"]
title: '[UI]: '
labels: ['ui/ux']
body:
- type: textarea
id: summary
Expand All @@ -27,4 +27,4 @@ body:
id: context
attributes:
label: Screenshots/Mockups
placeholder: Add links or attachments if possible.
placeholder: Add links or attachments if possible.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/050-question.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: ❓ Question
description: Ask about usage, configuration, or troubleshooting
title: "[Question]: "
labels: ["question"]
title: '[Question]: '
labels: ['question']
body:
- type: textarea
id: question
Expand Down Expand Up @@ -31,4 +31,4 @@ body:
id: context
attributes:
label: Additional Context
placeholder: Logs, screenshots, or config files.
placeholder: Logs, screenshots, or config files.
16 changes: 8 additions & 8 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@ rm -rf node_modules dist && npm ci && npm run build

### 📄 Important Files

| File | Purpose |
|--------------------------|----------------------------------------------|
| `vite.config.ts` | Vite build configuration |
| `tailwind.config.js` | Tailwind CSS setup |
| `tsconfig.json` | TypeScript compiler options |
| `eslint.config.js` | ESLint rules |
| `index.html` | Entry HTML file |
| `package.json` | Scripts and dependencies |
| File | Purpose |
| -------------------- | --------------------------- |
| `vite.config.ts` | Vite build configuration |
| `tailwind.config.js` | Tailwind CSS setup |
| `tsconfig.json` | TypeScript compiler options |
| `eslint.config.js` | ESLint rules |
| `index.html` | Entry HTML file |
| `package.json` | Scripts and dependencies |

### ✅ Validation Steps

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Copilot Setup Steps"
name: 'Copilot Setup Steps'

# Automatically run the setup steps when they are changed to allow for easy validation, and
# allow manual testing through the repository's "Actions" tab
Expand Down Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "npm"
cache: 'npm'

- name: Install dependencies
run: npm ci
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
toTag: 'v${{ env.VERSION }}'
configurationJson: |
{
"template": "## Release Notes\n#{{CHANGELOG}}",
"template": "## Release Notes\n\n#{{CHANGELOG}}",
"categories": [
{
"title": "### 🚀 Enhancements",
Expand Down
Loading