Skip to content

Commit

Permalink
add metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
StanzillaManticore committed Apr 11, 2021
1 parent 65ceb93 commit 806164d
Show file tree
Hide file tree
Showing 13 changed files with 1,418 additions and 0 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
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Auto detect text files and perform LF normalization
* text=auto
*.pbt linguist-language=Protobuf-Text-Format
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: nicholasforeman

---

**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

38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Temporary files used when publishing & to store some preview data like persistent storage
# No need to synchronize
Temp/

# Local user settings used to store script breakpoints & hierarchy state (locked/hidden objects)
# No need to synchronize
UserSettings/

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

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

# 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 806164d

Please sign in to comment.