Skip to content

Commit

Permalink
Add metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
StanzillaManticore committed Jun 11, 2021
1 parent 3f5a7ad commit 8b93446
Show file tree
Hide file tree
Showing 11 changed files with 1,609 additions and 48 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = tab
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[{*.yml,*.toml,*.md}]
indent_style = spaces
indent_size = 2
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Auto detect text files and perform LF normalization
* text=auto
*.pbt linguist-language=Protobuf-Text-Format
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: davidclarkdivide

---

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

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. 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.

**Versions (please complete the following information):**

- Core: [e.g. 1.0.800]
- CC Version [e.g. 1.0.1]

**Additional context**
Add any other context about the problem here.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 150

- name: Install and run Luacheck
uses: nebularg/actions-luacheck@v1
with:
args: '--no-color -qo "011"'
annotate: warning

35 changes: 24 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,31 @@ UserSettings/

# Screenshots used when publishing & for project thumbnails in the Create tab
# Comment out if you want to synchronize screenshots
Screenshots/

# Directory created when publishing a game, excluding this allows anyone to publish without
# the "You aren't authorized" message
# No need to synchronize
PublishData/

# Folder created when you export templates from a game project
# No need to synchronize
Exports/
#Screenshots/

# Directory created when migrating from an old storage format
# No need to synchronize
.core_backup/
Data/Scripts/.vs/

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Visual Studio
.vs/

# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# Local History for Visual Studio Code
.history/
Loading

0 comments on commit 8b93446

Please sign in to comment.