but if I add another setting specific to a module, with ModuleFilters before StaticAnalysisConfig, then the undocumented_declaration_check is somehow enabled again.
If I put StaticAnalysisConfig before the ModuleFilters then the undocumented_declaration_check does get disabled as expected but the could_be_immutable_check is still being checked against myproject.tests when it shouldn't be.
The following works fine for all modules:
but if I add another setting specific to a module, with ModuleFilters before StaticAnalysisConfig, then the
undocumented_declaration_check
is somehow enabled again.If I put StaticAnalysisConfig before the ModuleFilters then the
undocumented_declaration_check
does get disabled as expected but thecould_be_immutable_check
is still being checked against myproject.tests when it shouldn't be.