
for example :
in moduleA: configA.yml
ruleset1:
active: true
rule1:
active: true
rule2:
active: true
in moduleB: configB.yml
ruleset1:
active: true
rule1:
active: true
rule2:
active: false
Both moduleA and moudleB are belong to the project.
Ultimately, the IDE only displays code that violates rule1 within ruleset1, and code that violates rule2 is not shown when multiple configuration files are set. However, if only configA.yml( in moduleA subproject)is configured, violations of both rule1 and rule2 are detected in the code.