Skip to content

Commit 2588a50

Browse files
committed
Initial commit
0 parents  commit 2588a50

26 files changed

+10570
-0
lines changed

.config/eslint.config.cjs

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
module.exports = {
2+
root: true,
3+
4+
env: {
5+
browser: true,
6+
node: true,
7+
es2022: true
8+
},
9+
10+
parserOptions: {
11+
sourceType: 'module',
12+
ecmaVersion: 2022
13+
},
14+
15+
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
16+
parser: '@typescript-eslint/parser',
17+
plugins: ['@typescript-eslint'],
18+
19+
ignorePatterns: [
20+
'.DS_Store',
21+
'node_modules',
22+
'package*',
23+
'*.log*',
24+
'.nuxt',
25+
'.output',
26+
'.cache',
27+
'.env',
28+
'dist'
29+
]
30+
}

.config/prettier.config.cjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
arrowParens: 'avoid',
3+
semi: false,
4+
singleQuote: true,
5+
trailingComma: 'none'
6+
}

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
max_line_length = 80
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
max_line_length = 0
15+
trim_trailing_whitespace = false
16+
17+
[COMMIT_EDITMSG]
18+
max_line_length = 0

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Bug Report 🚨
2+
description: Report a bug to help improve this project.
3+
labels: 'bug'
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: Thanks for being interested in contributing to this project! Please fill out this form as completely as possible.
8+
- type: textarea
9+
attributes:
10+
label: Steps to Reproduce
11+
description: Clear steps that describe how to reproduce the issue.
12+
validations:
13+
required: true
14+
- type: textarea
15+
attributes:
16+
label: Current Behavior
17+
description: Describe what is actually happening.
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: Expected Behavior
23+
description: Describe what you expected to happen.
24+
validations:
25+
required: true
26+
- type: textarea
27+
attributes:
28+
label: Additional Details
29+
description: Provide information that may be helpful.
30+
- type: input
31+
id: version
32+
attributes:
33+
label: Version
34+
description: Specify the exact version.
35+
placeholder: '1.0.0'
36+
- type: markdown
37+
attributes:
38+
value: |
39+
Before posting, please go through the steps to make sure the information provided is clear and detailed.
40+
Your feedback is much appreciated. Thanks in advance!

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Questions & Help 🙋
4+
url: https://github.com/ivodolenc/nuxt-fonty/discussions
5+
about: Please use Discussions for all additional questions or technical advices.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Feature Request 🚀
2+
description: Suggest a new idea or a quick enhancement.
3+
labels: 'feat'
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: Thanks for being interested in contributing to this project! Please fill out this form as completely as possible.
8+
- type: textarea
9+
attributes:
10+
label: Request Description
11+
description: Describe what you'd like to see as a new enhancement.
12+
validations:
13+
required: true
14+
- type: textarea
15+
attributes:
16+
label: Alternative Solutions
17+
description: Describe the alternatives you've considered.
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: Additional Details
23+
description: Provide information that may be helpful.
24+
- type: markdown
25+
attributes:
26+
value: |
27+
Before posting, go through the steps to make sure the information provided is clear and detailed.
28+
Your feedback is much appreciated. Thanks in advance!

.github/codeowners

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

.github/funding.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
github: ivodolenc
3+
custom: ['https://revolut.me/ivodolenc', 'https://paypal.me/ivodolenc']

.github/pull_request_template.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!-- Thanks for opening a PR! Your contribution is much appreciated. -->
2+
3+
## Type of Change
4+
5+
<!-- Check the boxes with an 'x' that refers to your changes. -->
6+
7+
<!-- At least one checkbox needs to be selected. -->
8+
9+
- [ ] Bug fix 🐛
10+
- [ ] New feature 🚀
11+
- [ ] Documentation 📖
12+
- [ ] Breaking change ⚠️
13+
- [ ] Other 🧑‍💻
14+
15+
## Request Description
16+
17+
<!-- Describe your new request in detail. -->
18+
19+
<!-- Add links to related issues, e.g. Fixes #number, Resolves #number, Closes #number etc. -->
20+
21+
## Additional Details
22+
23+
<!-- Provide additional information if necessary. -->
24+
25+
<!-- Otherwise, feel free to delete the section. -->

.github/release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
changelog:
2+
categories:
3+
- title: Breaking Changes ⚠️
4+
labels:
5+
- breaking-change
6+
- break
7+
- title: New Features 🚀
8+
labels:
9+
- feature
10+
- enhancement
11+
- feat
12+
- title: Bug Fixes 🐛
13+
labels:
14+
- bug
15+
- fix
16+
- title: Documentation 📖
17+
labels:
18+
- docs
19+
- title: Other Changes 🧑‍💻
20+
labels:
21+
- '*'

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_Store
2+
node_modules
3+
.private
4+
*.log*
5+
.nuxt
6+
.output
7+
.cache
8+
.env
9+
dist

.prettierignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_Store
2+
node_modules
3+
package-lock.json
4+
*.log*
5+
.nuxt
6+
.output
7+
.cache
8+
.env
9+
dist

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Release Notes 🥳
2+
3+
Check out the latest features and improvements. [See Releases →](https://github.com/ivodolenc/nuxt-fonty/releases)

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Ivo Dolenc
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)