Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .editorconfig
Comment thread
NoComment1105 marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root = true

[*]
charset = utf-8
indent_size = 4
indent_style = space
insert_final_newline = false
Comment thread
NoComment1105 marked this conversation as resolved.
Outdated
trim_trailing_whitespace = true
max_line_length = 120

[{*.yml,*.yaml}]
indent_size = 2

[*.json]
tab_width = 8
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are you sure that this isn't a bit much? or is that not the size of 8 spaces?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems I misread the standard conventions while reasearching. I have replaced it with indent_size = 2 as it's the standard JS style

1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.bat text eol=crlf
68 changes: 68 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Bug Report
description: Something is broken or doesn't work as expected!
title: '[BUG]: '
labels: bug

body:
- type: checkboxes
attributes:
label: Is there an existing issue on the tracker?
description: Please search to see if an issue report already exists for the bug you encountered
options:
- label: I have searched the issue tracker
required: true
- type: textarea
attributes:
label: Current Behavior
description: A description of what is happening
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: A description of what you expected to happen
validations:
required: true
- type: textarea
attributes:
label: Reproduction steps
description: Steps to reproduce the behavior
placeholder: |
1. In this environment
1. With this setup
1. Run '...'
1. See error/unexpected behavior
validations:
required: false
- type: textarea
attributes:
label: Code snippet
description: If you can, please provide a snippet of the code that produces this error
placeholder: This area will format the code to Kotlin, no need for backticks!
renderer: kotlin
validations:
required: false
- type: textarea
attributes:
label: Environment
description: |
example:
- **Kord Version**: 0.17.0
- **Kotlin Version**: 2.3.0
- **Gradle Version**: 9.3.0
value: |
- Kord Version:
- Kotlin Version:
- Gradle Version:
renderer: markdown
validations:
required: true
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more information about the issue you're encountering!

Tip: You can attach images or log files by clicking this area to highlight it and dragging files in.
validations:
required: false
6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
blank_issues_enabled: false
contact_links:
- name: Join the Kord Discord for support!
url: https://discord.gg/6jcx5ev
about: If you're looking for support, it's easier to receive the support through our Discord Server. If you're |
not looking for support, please check for a duplicate of your issue, before opening a report. Thanks!
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Feature Request
description: Suggest an idea for the project
title: '[FEAT]: '
labels: enhancement

body:
- type: checkboxes
attributes:
label: Is there an existing request on the tracker?
description: Please search to see if an feature request already exists for the feature you are requesting
options:
- label: I have searched the issue tracker
required: true
- type: textarea
attributes:
label: Is your feature request related to a problem?
description: A clear and concise description of what the problem is, e.g. I'm always frustrated when...
validations:
required: false
- type: textarea
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen
validations:
required: false
- type: textarea
attributes:
label: Describe alternatives you've considered.
description: A alternatives you have to counteract this missing feature
validations:
required: false
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more information on the feature you're requesting

Tip: You can attach images or log files by clicking this area to highlight it and dragging files in.
validations:
required: false
31 changes: 31 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## Description:

<!-- Please provide a description of what your PR does -->

---

## Type of Change:

- [ ] Bug Fix
- [ ] New Feature
- [ ] Breaking change
- [ ] Documentation
- [ ] Dependencies/Buildscript updates
- [ ] Other: <!-- Please specify-->

---

## PR Checklist

#### Please ensure these are all checked before opening a pull request

- [ ] I have checked for any PRs that already exist for this issue.
- [ ] I have followed
the [contributor guidelines](https://github.com/kordlib/kord/blob/main/CONTRIBUTING.md).
- [ ] I have tested my code to the best of my ability.

---

## Related issues

<!-- Please add the number of any issues related to this PR. If non exist, please remove this section. -->
Loading
Loading