Unwanted JavaScript Linting / Fixing

Hey There!

I really like Cursor so far - but have one issue which keeps me from switching to it completely:

it seems to do some linting & fixing on my JS files (which conflicts with the linting/fixing that I actually want through standard).

I’ve disabled all extensions (run cursor with “cursor --disable-extensions”) and also disabled my .vscode/settings.json but still when saving a JS file it removes a blank space between my function name and parenthesis.

Cursor changes function modalOpened () {} tofunction modalOpened() {} on save. I cannot see where this is coming from excatly, but would like to disable it.

All extensions were imported from VS Code and I don’t have the same issue there, even on the same project and file.

Does anybody know how to help?
Thanks a lot, Aaron


My user settings.json:

{
    "breadcrumbs.enabled": true,
    "editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace",
    "editor.cursorWidth": 4,
    "editor.lineHeight": 28,
    "editor.fontLigatures": true,
    "files.trimTrailingWhitespace": false,
    "workbench.colorTheme": "Monokai Pro (Filter Machine)",
    "editor.minimap.enabled": false,
    "workbench.iconTheme": "Monokai Pro (Filter Machine) Icons",
    "git.openRepositoryInParentFolders": "always",
    "window.zoomLevel": 1,
    "editor.unicodeHighlight.invisibleCharacters": false,
    "editor.wordWrap": "on",
    "[scss]": {
        "editor.defaultFormatter": "stylelint.vscode-stylelint"
    },
    "zenMode.fullScreen": false,
    "editor.accessibilitySupport": "off",
    "laravel-pint.enable": true,
    "editor.formatOnSave": true
}
1 Like

did you get any fix?
@telltec