forked from Aurorastation/Aurora.3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Aurorastation:master' into master
- Loading branch information
Showing
4,509 changed files
with
1,242,015 additions
and
550,239 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
indent_style = tab | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.dm] | ||
indent_style = tab | ||
indent_size = 4 | ||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.py] | ||
indent_style = space | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[Dockerfile] | ||
indent_style = space |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,46 @@ | ||
# merger hooks, run tools/hooks/install.bat or install.sh to set up | ||
*.dmm text merge=dmm eol=crlf | ||
*.dmi binary merge=dmi | ||
|
||
# force changelog merging to use union | ||
html/changelog.html merge=union | ||
|
||
# Enforce Line Endings | ||
* text=auto | ||
|
||
*.ai binary | ||
## Enforce text mode and LF line breaks | ||
*.bat text eol=lf | ||
*.cjs text eol=lf | ||
*.css text eol=lf | ||
*.dm text eol=lf | ||
*.dme text eol=lf | ||
*.dmf text eol=lf | ||
*.htm text eol=lf | ||
*.html text eol=lf | ||
*.js text eol=lf | ||
*.json text eol=lf | ||
*.jsx text eol=lf | ||
*.md text eol=lf | ||
*.ps1 text eol=lf | ||
*.py text eol=lf | ||
*.scss text eol=lf | ||
*.sh text eol=lf | ||
*.sql text eol=lf | ||
*.svg text eol=lf | ||
*.ts text eol=lf | ||
*.tsx text eol=lf | ||
*.txt text eol=lf | ||
*.yaml text eol=lf | ||
*.yml text eol=lf | ||
|
||
## Enforce binary mode | ||
*.bmp binary | ||
*.dll binary | ||
*.dmb binary | ||
*.exe binary | ||
*.fla binary | ||
*.gif binary | ||
*.jar binary | ||
*.jpg binary | ||
*.mid binary | ||
*.ogg binary | ||
*.pdb binary | ||
*.png binary | ||
*.psd binary | ||
*.s3m binary | ||
*.sav binary | ||
*.so binary | ||
*.svg binary | ||
*.wav binary | ||
*.xcf binary | ||
*.xlsx binary | ||
|
||
*.awk text | ||
*.bat text | ||
*.conf text | ||
*.cpp text | ||
*.cs text | ||
*.css text | ||
*.dm text | ||
*.dmf text | ||
*.gitkeep text | ||
*.hook text | ||
*.html text | ||
*.java text | ||
*.js text | ||
*.json text | ||
*.log text | ||
*.map text | ||
*.md text | ||
*.php text | ||
*.py text | ||
*.scss text | ||
*.sh text | ||
*.sql text | ||
*.tmpl text | ||
*.txt text | ||
*.vue text | ||
## Merger hooks, run tools/hooks/install.bat or install.sh to set up | ||
*.dmm text eol=lf merge=dmm | ||
*.dmi binary merge=dmi | ||
|
||
## Force tab indents on dm files | ||
*.dm whitespace=indent-with-non-tab | ||
|
||
# force changelog merging to use union | ||
html/changelog.html merge=union |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Folder Rules | ||
'Changelog Required': | ||
- '!html/changelogs/*.yml' | ||
|
||
Database: | ||
- SQL/* | ||
|
||
'🗺️ Mapping - Aurora': | ||
- maps/aurora/* | ||
|
||
'🗺️ Mapping - Away Ship/Away Site': | ||
- maps/away/* | ||
|
||
'🗺️ Mapping - Dungeon': | ||
- maps/dungeon_spawns/* | ||
|
||
'🗺️ Mapping - Event': | ||
- maps/event/* | ||
|
||
'🗺️ Mapping - Random Ruins': | ||
- maps/random_ruins/* | ||
|
||
'🗺️ Mapping - Runtime': | ||
- maps/runtime/* | ||
|
||
'🗺️ Mapping - Horizon': | ||
- maps/sccv_horizon/* | ||
|
||
'🗺️ Mapping - Templates': | ||
- maps/templates/* | ||
|
||
Sounds: | ||
- sound/* | ||
|
||
TGUI: | ||
- tgui/* | ||
|
||
Tools: | ||
- tools/* | ||
- .github/* | ||
|
||
# File Type Rules | ||
Javascript: | ||
- '*.js' | ||
|
||
Python: | ||
- '*.py' | ||
|
||
Sprites: | ||
- '*.dmi' |
Oops, something went wrong.