is it possible to apply detekt config from multipl...
# detekt
p
is it possible to apply detekt config from multiple files? I have a common ruleset, that I want to share between modules. Smth like this:
Copy code
detekt {
    config.from("../detekt-common.yml")
    config.from("detekt-my-module.yml")
}
yes black 1
n
config.setFrom
can take a list of configuration files
🤔 1