Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enforce snake case in DM proc names. #11355

Closed
1 change: 1 addition & 0 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
find . -name "*.php" -print0 | xargs -0 -n1 php -l
find . -name "*.json" -not -path "*/node_modules/*" -print0 | xargs -0 python ./tools/json_verifier.py
bash tools/ci/check_grep.sh
bash tools/ci/check_path_names.sh
tools/build/build --ci lint tgui-test
tools/bootstrap/python -m dmi.test
tools/bootstrap/python -m mapmerge2.dmm_test
Expand Down
2 changes: 2 additions & 0 deletions code/__DEFINES/tgs.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// LINT_PATHNAME_IGNORE

// tgstation-server DMAPI
// The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in IETF RFC 2119.

Expand Down
2 changes: 2 additions & 0 deletions code/controllers/subsystem/dbcore.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// LINT_PATHNAME_IGNORE

SUBSYSTEM_DEF(dbcore)
name = "Database"
flags = SS_TICKER
Expand Down
2 changes: 2 additions & 0 deletions code/datums/tgs_event_handler.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// LINT_PATHNAME_IGNORE

/datum/tgs_event_handler/impl
var/datum/timedevent/reattach_timer

Expand Down
2 changes: 2 additions & 0 deletions code/modules/tgs/core/tgs_version.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// LINT_PATHNAME_IGNORE

/datum/tgs_version/New(raw_parameter)
..()
src.raw_parameter = raw_parameter
Expand Down
Loading
Loading