How to enable editorconfig extension on cursor ide

Hello folks, just started using cursor, I came from vscode.
I’m trying to set up editorconfig, since my company use a editorconfig file on the projects, I have already installed the extension and added this setting to the settings.json of the IDE:

{
    "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true,
    },
}

But when I type ctrl+s to save a file, it is not being auto fixed.

Does someone here knows how to configure editorconfig properly on cursor IDE?

I solved the problem, I was missing one required extension: ESLint.
Problem solved.