-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2588a50
Showing
26 changed files
with
10,570 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
module.exports = { | ||
root: true, | ||
|
||
env: { | ||
browser: true, | ||
node: true, | ||
es2022: true | ||
}, | ||
|
||
parserOptions: { | ||
sourceType: 'module', | ||
ecmaVersion: 2022 | ||
}, | ||
|
||
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'], | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['@typescript-eslint'], | ||
|
||
ignorePatterns: [ | ||
'.DS_Store', | ||
'node_modules', | ||
'package*', | ||
'*.log*', | ||
'.nuxt', | ||
'.output', | ||
'.cache', | ||
'.env', | ||
'dist' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
arrowParens: 'avoid', | ||
semi: false, | ||
singleQuote: true, | ||
trailingComma: 'none' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# https://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
max_line_length = 0 | ||
trim_trailing_whitespace = false | ||
|
||
[COMMIT_EDITMSG] | ||
max_line_length = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Bug Report 🚨 | ||
description: Report a bug to help improve this project. | ||
labels: 'bug' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for being interested in contributing to this project! Please fill out this form as completely as possible. | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce | ||
description: Clear steps that describe how to reproduce the issue. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Current Behavior | ||
description: Describe what is actually happening. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: Describe what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Additional Details | ||
description: Provide information that may be helpful. | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: Specify the exact version. | ||
placeholder: '1.0.0' | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before posting, please go through the steps to make sure the information provided is clear and detailed. | ||
Your feedback is much appreciated. Thanks in advance! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Questions & Help 🙋 | ||
url: https://github.com/ivodolenc/nuxt-fonty/discussions | ||
about: Please use Discussions for all additional questions or technical advices. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Feature Request 🚀 | ||
description: Suggest a new idea or a quick enhancement. | ||
labels: 'feat' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for being interested in contributing to this project! Please fill out this form as completely as possible. | ||
- type: textarea | ||
attributes: | ||
label: Request Description | ||
description: Describe what you'd like to see as a new enhancement. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Alternative Solutions | ||
description: Describe the alternatives you've considered. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Additional Details | ||
description: Provide information that may be helpful. | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before posting, go through the steps to make sure the information provided is clear and detailed. | ||
Your feedback is much appreciated. Thanks in advance! |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @ivodolenc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These are supported funding model platforms | ||
github: ivodolenc | ||
custom: ['https://revolut.me/ivodolenc', 'https://paypal.me/ivodolenc'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!-- Thanks for opening a PR! Your contribution is much appreciated. --> | ||
|
||
## Type of Change | ||
|
||
<!-- Check the boxes with an 'x' that refers to your changes. --> | ||
|
||
<!-- At least one checkbox needs to be selected. --> | ||
|
||
- [ ] Bug fix 🐛 | ||
- [ ] New feature 🚀 | ||
- [ ] Documentation 📖 | ||
- [ ] Breaking change ⚠️ | ||
- [ ] Other 🧑💻 | ||
|
||
## Request Description | ||
|
||
<!-- Describe your new request in detail. --> | ||
|
||
<!-- Add links to related issues, e.g. Fixes #number, Resolves #number, Closes #number etc. --> | ||
|
||
## Additional Details | ||
|
||
<!-- Provide additional information if necessary. --> | ||
|
||
<!-- Otherwise, feel free to delete the section. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
changelog: | ||
categories: | ||
- title: Breaking Changes ⚠️ | ||
labels: | ||
- breaking-change | ||
- break | ||
- title: New Features 🚀 | ||
labels: | ||
- feature | ||
- enhancement | ||
- feat | ||
- title: Bug Fixes 🐛 | ||
labels: | ||
- bug | ||
- fix | ||
- title: Documentation 📖 | ||
labels: | ||
- docs | ||
- title: Other Changes 🧑💻 | ||
labels: | ||
- '*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.DS_Store | ||
node_modules | ||
.private | ||
*.log* | ||
.nuxt | ||
.output | ||
.cache | ||
.env | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.DS_Store | ||
node_modules | ||
package-lock.json | ||
*.log* | ||
.nuxt | ||
.output | ||
.cache | ||
.env | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Release Notes 🥳 | ||
|
||
Check out the latest features and improvements. [See Releases →](https://github.com/ivodolenc/nuxt-fonty/releases) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 Ivo Dolenc | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.