Any way to use plugins with nrlint?

Was trying to add an eslint rule but found it was deprecated and moved to a separate "stylistic" plugin. Tried adding this to nrlint, but to no effect. Anyone knows how to add it? Is it even possible?

@stylistic/eslint-plugin-js - npm

Seems like eslint is moving away from formatting and focus more about core language linting.
Deprecation of formatting rules - ESLint - Pluggable JavaScript Linter

PS: Node-RED supporting a formatter like prettier would be really great.

Tried adding plugins to .nrlintrc.js:

module.exports = {
    plugins: ["@stylistic/eslint-plugin-js"],
    "rules": {
        "align-to-grid": true,
        "@stylistic/js/quote-props": ["warn", "as-needed", { "keywords": true, "unnecessary": true, "numbers": true }],
...

It runs, but doesn't detect according to the rule.