Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ivodolenc committed Feb 9, 2023
0 parents commit 2588a50
Show file tree
Hide file tree
Showing 26 changed files with 10,570 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .config/eslint.config.cjs
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'
]
}
6 changes: 6 additions & 0 deletions .config/prettier.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
arrowParens: 'avoid',
semi: false,
singleQuote: true,
trailingComma: 'none'
}
18 changes: 18 additions & 0 deletions .editorconfig
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
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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!
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
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.
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
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!
1 change: 1 addition & 0 deletions .github/codeowners
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @ivodolenc
3 changes: 3 additions & 0 deletions .github/funding.yml
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']
25 changes: 25 additions & 0 deletions .github/pull_request_template.md
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. -->
21 changes: 21 additions & 0 deletions .github/release.yml
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:
- '*'
9 changes: 9 additions & 0 deletions .gitignore
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
9 changes: 9 additions & 0 deletions .prettierignore
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
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)
21 changes: 21 additions & 0 deletions LICENSE
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.
Loading

0 comments on commit 2588a50

Please sign in to comment.