Files
vgstation13/___odlint.dm
west3436 9c9cd470f8 Linter Improvements (#37149)
* linter improvements

* update rights

* requirements

* perhaps

* better

* test

* oops

* un-TG it

* Update od_lints.dm
2024-09-25 07:09:44 -05:00

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