Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.

Commit

Permalink
Introduce line ending normalization.
Browse files Browse the repository at this point in the history
  • Loading branch information
AriRexouium committed Dec 10, 2021
1 parent 7766e87 commit 3e96507
Show file tree
Hide file tree
Showing 65 changed files with 2,368 additions and 2,362 deletions.
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
* text=auto

*.bat text eol=crlf
*.sh text eol=lf

*.png filter=lfs diff=lfs merge=lfs -text
54 changes: 27 additions & 27 deletions .github/ISSUE_TEMPLATE/Bug_report.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
---
name: Bug Report
about: Create a report to help us improve.
---

**Describe the Bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Enable '...' setting.
2. Run '....' command.
3. See error.

**Expected Behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Environment (please complete the following information):**
- OS: [e.g. Windows 10]
- Node Version: [e.g. 10.0.0]
- Bot Version [e.g. 3.5.0]

**Additional context**
Add any other context about the problem here.
---
name: Bug Report
about: Create a report to help us improve.
---

**Describe the Bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Enable '...' setting.
2. Run '....' command.
3. See error.

**Expected Behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Environment (please complete the following information):**
- OS: [e.g. Windows 10]
- Node Version: [e.g. 10.0.0]
- Bot Version [e.g. 3.5.0]

**Additional context**
Add any other context about the problem here.
32 changes: 16 additions & 16 deletions .github/ISSUE_TEMPLATE/Feature_request.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
name: Feature Request
about: Suggest an idea for this project.
---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
---
name: Feature Request
about: Suggest an idea for this project.
---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
64 changes: 32 additions & 32 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
# ==============================
# Files
# ==============================

# NPM
package-lock.json
npm-debug.log

# Yarn
yarn.lock
yarn-debug.log
yarn-error.log

# ==============================
# Directories
# ==============================

# Dependencies
node_modules/

# NPM
.npm/

# Temp
temp/

# Microsoft VS Code
.vscode/

# Configuration
*.sqlite
src/config/
# ==============================
# Files
# ==============================

# NPM
package-lock.json
npm-debug.log

# Yarn
yarn.lock
yarn-debug.log
yarn-error.log

# ==============================
# Directories
# ==============================

# Dependencies
node_modules/

# NPM
.npm/

# Temp
temp/

# Microsoft VS Code
.vscode/

# Configuration
*.sqlite
src/config/
Binary file modified assets/AceBot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 16 additions & 16 deletions assets/changelog-example.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"releases": [
{
"version": "1.0.0",
"releaseDate": "1970-01-01",
"types": {
"added": [],
"changed": [],
"deprecated": [],
"removed": [],
"fixed": [],
"security": []
}
}
]
}
{
"releases": [
{
"version": "1.0.0",
"releaseDate": "1970-01-01",
"types": {
"added": [],
"changed": [],
"deprecated": [],
"removed": [],
"fixed": [],
"security": []
}
}
]
}
Loading

0 comments on commit 3e96507

Please sign in to comment.