← All showcases
antipatterndatapointers

Data, not ideas

Don't store records, config values, or inventories in .rq — point at the source of truth.

antipattern

support_contacts {
    alice: alice@example.com
    bob: bob@example.com
    carol: carol@example.com
}

prefer

support_contacts {
    canonical list lives in ["./data/contacts.json"]
    validated by ["./src/contacts.test.ts"]
}

apythonfile.py

class APythonClass:
    def say_hello(self) -> None:
        print("hello")