Skip to content

Commit

Permalink
Merge pull request #2 from Core-Team-META/development
Browse files Browse the repository at this point in the history
  • Loading branch information
StanzillaManticore authored Oct 30, 2021
2 parents 7e10aca + a33c4dc commit bb677f8
Show file tree
Hide file tree
Showing 10 changed files with 1,672 additions and 11 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
6 changes: 4 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Core saves .pbt files as LF by default
*.pbt text eol=lf
# Auto detect text files and perform LF normalization
* text=auto
*.pbt text eol=lf -delta linguist-language=Protobuf-Text-Format
*.terrain binary -delta
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:

---

**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]
- Game Version [e.g. 1.0.1]

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

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

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

28 changes: 24 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
UserSettings
PublishData
Screenshots
Exports
# 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 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/

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

0 comments on commit bb677f8

Please sign in to comment.