How do you name DSL context receivers? E.g. in `ds...
# codingconventions
v
How do you name DSL context receivers? E.g. in
dsl(block: THIS.() -> Unit)
Do you consistently name it
*Scope
,
*Ctx
or something to that extent?
y
I go with
Scope
or
Context
generally, or
Builder
if it is a builder.