Skip to content

Commit

Permalink
Setup Codebase - Base under Citadel-Station-13-RP
Browse files Browse the repository at this point in the history
Start-of-project. :3
  • Loading branch information
Rykka-Stormheart committed Nov 7, 2023
2 parents ee84daa + 366c16f commit c9d21b2
Show file tree
Hide file tree
Showing 14,959 changed files with 5,210,920 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
26 changes: 26 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[*]
indent_style = tab
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf

[*.yml]
indent_style = space
indent_size = 2

[*.py]
indent_style = space

[*.md]
indent_style = space
indent_size = 2
trim_trailing_whitespace = false

[*.sql]
indent_style = space
indent_size = 2

[Dockerfile]
indent_style = space
16 changes: 16 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#Ignores big formatting commits when checking blame.
#To make use of this file by default, run 'git config blame.ignoreRevsFile .git-blame-ignore-revs'
#in the project folder

## Line ending conversions

# Force LF line endings with gitattributes and convert repo
62676e72a85cd23e7a87d94adff96d17859dbdc5
# Line ending apocalypse
134a76cc8f5517bdc1bba5a8cbe01dc820df1c2a
# Initial pass to convert LF to CRLF
8af8a43d6f27e342e79d4aacb22b7668cbdc8559
# Many changes
931da9e7ef8c0f52a768eed7998e7e62ccdefcdc
# Remove hideous inline tab indentation, and bans it in contributing guidelines
0f435d5dff0a7957e8cba60a41a7fc10439064c3
43 changes: 43 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
* text=auto

## 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
*.gif binary
*.jpg binary
*.png binary
*.so binary

## 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
4 changes: 4 additions & 0 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[merge "merge-dmm"]
name = mapmerge driver
driver = ./mapmerge.sh %O %A %B
recursive = text
58 changes: 58 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# This list auto requests reviews from the specified org members
# when a PR that modifies the file in question is opened
# This list is alphabetized by User -> Filename KEEP IT THAT WAY
# In the event that multiple org members are to be informed of changes
# to the same file or dir, add them to the end under Multiple Owners

## HOSTS

/code/modules/client/preferences/preference_setup/loadout/loadout_donator.dm @LetterJay


## SEVEROPS

### Multiple Owners

/SQL/database_changelog.txt @LetterJay @silicons


## MAINTAINERS

### Zandario

/.github/workflows/ @Zandario
/code/__DEFINES/chat.dm @Zandario
/code/__DEFINES/tgui.dm @Zandario
/code/controllers/subsystem/chat.dm @Zandario
/code/controllers/subsystem/ping.dm @Zandario
/code/controllers/subsystem/tgui.dm @Zandario
/code/modules/tgchat/ @Zandario
/code/modules/tgui/ @Zandario
/code/modules/tgui_panel/ @Zandario
/tools/build/ @Zandario
/tools/ci/ @Zandario
/tools/pull_request_hooks/ @Zandario
/tgui/ @Zandario

### Zandario (explicitly disowned)

/tgui/packages/tgui/interfaces/
/tgui/packages/tgui/styles/interfaces/
/tgui/packages/tgui-panel/styles/goon/chat-dark.scss
/tgui/packages/tgui-panel/styles/goon/chat-light.scss

### TheLordME

/code/modules/power/geothermal_power.dm @TheLordME
/code/modules/species/station/xenomorph_hybrids/ @TheLordME
/code/modules/sprite_accessories/wings/xenomorph.dm @TheLordME
/code/modules/sprite_accessories/tail/species/xenomorph.dm @TheLordME
/code/modules/sprite_accessories/ears/xenomorph.dm @TheLordME
/code/modules/events/xenoinfestation.dm @TheLordME

### Multiple Owners


## CONTRIBUTORS

### Multiple Owners
Loading

0 comments on commit c9d21b2

Please sign in to comment.