On a separate note, `active: false` on a specific ...
# detekt
m
On a separate note,
active: false
on a specific custom rule doesn't seem to be respected. e.g. when I set my config to
Copy code
custom-proj-rules:
  active: true
  InvalidExpressionFunction:
    active: false
  KotlinObjectJavaSerialization:
    active: true
InvalidExpressionFunction
still gets triggered. However if I do
Copy code
custom-proj-rules:
  active: false
  InvalidExpressionFunction:
    active: false
  KotlinObjectJavaSerialization:
    active: true
all the rules are turned off as expected