forked from shiptest-ss13/Shiptest
-
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.
[READY][TM-REQ] Ports the CBT and TGUI refactors from /TG/ (shiptest-…
…ss13#1349) * shipowners v1. let's see what the tests think * "missing trailing comma" yeah okay. ill trail your fucking commas * added option to withhold ckey * merge conflict resolution test 2 * updates shipowners application-sending UI * trailing comma * damn the tgui linters to hell * null client checks * fucking god dammit * line length * phase 1 * phase 2 - 5 * to_chat changes * subsys changes * replace old tools * why did you commit you meanie * should catch the rest of these * why are you failing on the changelog??? * agony * asset changes * map ci * undo this garbo * missed these * I hate you * fine * maybe? * ignore changelogs * just copy paste the tg linters * windows bs * tg uses this version of py * prettify * prettier cfg * force prettier reeval * resolve issues with prettier vsx * remove smart cable check * remove barricade issues * remove table issues * resolve chair issues * resolve nanotrasen spelling * not in the check grep file idiot * remove var from proc params regex: (/proc/\w+\()var/(.*) -> $1$2 * remove var from proc params regex: (/proc/\w+\()var/(.*) -> $1$2 * correct lattic issues * fix airlock names * fix incorrect apc pixel shifts * remove invalid lattices * resolve turf issues * resolve spacing issues * remove mixed indentation * damn you regexp * remove missed merge conflicts * this is a comment * trailing newline * proc var names and spacing * resolve duplicate firelocks * resolve lattice issues ignore example configs in json validation * disable check regex until issues with pygit are resolved * run the checks batman * temporarily removed check regex from linters * do this perhaps * just work * update usages for python and checkout * remove these * perhaps? * perhaps??? * e * god just fucking work * please run mr checks * ? * oops * I cannot describe simply how much I hate you and all that you stand for * agony * do it like this * perhaps? * ag * bgone * fix unbound * pipefail * agggg * prettier rerun * perhaps? * reorder? * hhh * wrong version * yet another prettier rerun * resolve tguis incorrectly handling ping replies * resolve game panel not inlining object datums * resolve ping not functioning * prettier once again * resolve outpost terminal hard faulting on cargo * prettier * prettier again * resolve map issues * get looc color back in here * I hate you Makes create mob work again * fixes issues where paper text would not save Co-authored-by: tmtmtl30 <[email protected]>
- Loading branch information
Showing
1,367 changed files
with
112,062 additions
and
77,244 deletions.
There are no files selected for viewing
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,3 +1,5 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = tab | ||
indent_size = 4 | ||
|
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
Large diffs are not rendered by default.
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
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
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 |
---|---|---|
@@ -1,44 +1,44 @@ | ||
Admin: | ||
- 'code/modules/admin/**' | ||
- "code/modules/admin/**" | ||
|
||
# Any file within the config subfolder | ||
Config: | ||
- 'config/**' | ||
- "config/**" | ||
|
||
Dependencies: | ||
- '**/package.json' | ||
- '**/package-lock.json' | ||
- '**/yarn.lock' | ||
- "**/package.json" | ||
- "**/package-lock.json" | ||
- "**/yarn.lock" | ||
|
||
# When the .DME is changed | ||
DME Edit: | ||
- './*.dme' | ||
- '**/*.dme' | ||
- "./*.dme" | ||
- "**/*.dme" | ||
|
||
# Any .dmi changes | ||
Sprites: | ||
- '**/*.dmi' | ||
- "**/*.dmi" | ||
|
||
# Changes to a .dmm or anything in the _map subfolder | ||
Map Change: | ||
- '**/*.dmm' | ||
- '_maps/**' | ||
- "**/*.dmm" | ||
- "_maps/**" | ||
|
||
# Any changes to .ogg files are marked as sound | ||
Sound: | ||
- '**/*.ogg' | ||
- "**/*.ogg" | ||
|
||
# Changes to the SQL subfolder | ||
SQL: | ||
- 'SQL/**' | ||
- "SQL/**" | ||
|
||
# Changes to the tgui subfolder | ||
tgui: | ||
- 'tgui/**' | ||
- "tgui/**" | ||
|
||
# Changes to the .Github subfolder | ||
Github: | ||
- '.github/**' | ||
- ".github/**" | ||
|
||
Deprecated Modularization: | ||
- 'whitesands/**' | ||
- "whitesands/**" |
Oops, something went wrong.