taking eslint as an example, you can be silent but still fix the rules that you can add to this config ```json "eslint.rules.customizations": [ { "rule": "style/*", "severity": "off", "fixable": true }, ], ``` i want to do something similar to silent but still fix the rules of some plugins and other stuff, is this possible?