mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
## About The Pull Request Courtesy of https://github.com/ParadiseSS13/Paradise/pull/21099 and https://github.com/goonstation/goonstation/pull/18127
11 lines
530 B
Plaintext
11 lines
530 B
Plaintext
// This file is included right at the start of the DME.
|
|
// Its purpose is to enable multiple lints (pragmas) that are supported by OpenDream to better validate the codebase
|
|
// These are essentially nitpicks the DM compiler should pick up on but doesnt
|
|
|
|
#if !defined(SPACEMAN_DMM) && defined(OPENDREAM)
|
|
// This is in a separate file as a hack to avoid SpacemanDMM
|
|
// evaluating the #pragma lines, even if its outside a block it cares about
|
|
// (Also so people can code-own it. Shoutout to AA)
|
|
#include "tools/ci/od_lints.dm"
|
|
#endif
|