Skip to content
This repository was archived by the owner on Jun 12, 2025. It is now read-only.

Commit 8e95f66

Browse files
author
Vianpyro
committed
Update VSCode settings, add CODEOWNERS, pull request template, and Prettier configuration
1 parent 9e4bbc1 commit 8e95f66

File tree

4 files changed

+65
-3
lines changed

4 files changed

+65
-3
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Default owner(s) for everything in the repo
2+
* @Vianpyro

.github/pull_request_template.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
## Description
2+
3+
- A clear and concise description of the changes introduced in this pull request.
4+
5+
## Related Issues
6+
7+
- Closes #ISSUE_NUMBER (if applicable)
8+
9+
## Changes Made
10+
11+
- List the main changes made in this PR:
12+
- [ ] Change 1
13+
- [ ] Change 2
14+
- [ ] Change 3
15+
16+
## Screenshots (if applicable)
17+
18+
- If applicable, add screenshots to help visualize the changes.
19+
20+
## How to Test
21+
22+
- Steps to test the changes:
23+
24+
1. Go to '...'
25+
2. Click on '....'
26+
3. Observe '....'
27+
28+
## Checklist
29+
30+
- [ ] My code follows the project's coding style.
31+
- [ ] I have performed a self-review of my code.
32+
- [ ] I have added necessary tests (if applicable).
33+
- [ ] I have documented my changes (if necessary).
34+
35+
## Additional Context
36+
37+
- Add any other relevant context or notes for reviewers.

.prettierrc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"printWidth": 80,
3+
"tabWidth": 4,
4+
"trailingComma": "es5",
5+
"useTabs": false,
6+
"semi": false,
7+
"singleQuote": true,
8+
"overrides": [
9+
{
10+
"files": ["*.yml", "*.yaml", "*.md"],
11+
"options": {
12+
"tabWidth": 2
13+
}
14+
},
15+
{
16+
"excludeFiles": "CODEOWNERS"
17+
}
18+
]
19+
}

.vscode/settings.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
2-
"editor.tabSize": 4,
3-
"editor.insertSpaces": true,
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
43
"editor.formatOnSave": true,
4+
"editor.insertSpaces": true,
5+
"editor.tabSize": 4,
56
"files.insertFinalNewline": true,
67
"files.trimFinalNewlines": true,
7-
"files.trimTrailingWhitespace": true
8+
"files.trimTrailingWhitespace": false,
9+
"[yaml]": {
10+
"editor.tabSize": 2
11+
}
812
}

0 commit comments

Comments
 (0)