Short version: eslint-vscode allows users to configure which rules to respect when doing --fix on save. Like this: { "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" // Turn on fixAll on save. }, "eslint.codeActionsOnSave.rules": ["simple-import-sort/imports"] /...