Skip to content

Commit f672a3b

Browse files
committed
Initial commit
0 parents  commit f672a3b

File tree

72 files changed

+5698
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+5698
-0
lines changed

.eslintrc.cjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = {
2+
root: true,
3+
env: { browser: true, es2020: true },
4+
extends: [
5+
"eslint:recommended",
6+
"plugin:@typescript-eslint/recommended",
7+
"plugin:react-hooks/recommended",
8+
],
9+
ignorePatterns: ["dist", ".eslintrc.cjs"],
10+
parser: "@typescript-eslint/parser",
11+
plugins: ["react-refresh"],
12+
rules: {
13+
"react-refresh/only-export-components": [
14+
"warn",
15+
{ allowConstantExport: true },
16+
],
17+
},
18+
};

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @SamHillierDev

.github/CODE_OF_CONDUCT

Whitespace-only changes.

.github/CONTRIBUTING

Whitespace-only changes.

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: Zyphaex
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "✍️ ​​Suggest Changes"
2+
description: Help me improve my portfolio by suggesting changes.
3+
labels: [suggestion]
4+
assignees: []
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to help me improve my portfolio with your suggestions.
10+
- type: input
11+
id: url
12+
attributes:
13+
label: URL
14+
description: Please provide the URL of where you are suggesting changes to.
15+
placeholder: https://samhillier.dev
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: suggestions
20+
attributes:
21+
label: Suggestions
22+
description: What changes would you like to suggest?
23+
placeholder: Enter your suggestions here.
24+
validations:
25+
required: true
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: "🐛 ​​Bug Report"
2+
description: Report an issue or possible bug.
3+
labels: [bug]
4+
assignees: []
5+
body:
6+
- type: input
7+
id: url
8+
attributes:
9+
label: What is the URL where the issue is happening.
10+
placeholder: https://samhillier.dev
11+
validations:
12+
required: true
13+
- type: dropdown
14+
id: browsers
15+
attributes:
16+
label: What browsers are you seeing the problem on?
17+
multiple: true
18+
options:
19+
- Chrome
20+
- Safari
21+
- Microsoft Edge
22+
- Firefox
23+
- Opera
24+
- Other
25+
- type: textarea
26+
id: bug
27+
attributes:
28+
label: Describe the Bug
29+
description: A clear and concise description of what the bug is and the steps to reproduce.
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: logs
34+
attributes:
35+
label: Output from browser console (if any)
36+
description: Please provide any relevant log output.
37+
- type: checkboxes
38+
id: participation
39+
attributes:
40+
label: Participation
41+
options:
42+
- label: I am willing to submit a pull request for this issue.
43+
required: false
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: "✨ ​​Feature Suggestion"
2+
description: Is there a feature you'd like to see? Let me know!
3+
labels: [feature request]
4+
assignees: []
5+
body:
6+
- type: textarea
7+
id: feature
8+
attributes:
9+
label: Feature Description
10+
description: Please provide a detailed description of the feature you are suggesting and how it would help you/others.
11+
validations:
12+
required: true
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: "🤷‍♂️ ​​Something else"
2+
description: If none of the above templates fit your needs, please use this template to submit your issue.
3+
labels: []
4+
assignees: []
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: Please provide a detailed description of the issue.
11+
validations:
12+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 📝 ​​Typo or Grammatical Mistake
4+
url: https://github.com/Zyphaex/portfolio/pulls
5+
about: Please submit a pull request instead of reporting it as an issue.
6+
- name: 🤝 ​Community
7+
url: https://discord.com/invite/XfZHVfPr9C
8+
about: Join my community Discord server.

0 commit comments

Comments
 (0)