microsoft / vscode

Visual Studio Code
https://code.visualstudio.com
MIT License
162.04k stars 28.5k forks source link

"Running Save Participants" #92471

Closed ChiefORZ closed 4 years ago

ChiefORZ commented 4 years ago

image

vsocde is trying to execute ESLint in my .sh files in an endless loop.

it is not definied in any config file that he should format it with eslint^^

// settings.json
{
  "[html]": {
    "editor.defaultFormatter": "vscode.html-language-features"
  },
  "[javascript]": {
    "editor.defaultFormatter": "dbaeumer.vscode-eslint"
  },
  "[json]": {
    "editor.defaultFormatter": "dbaeumer.vscode-eslint"
  },
  "atomKeymap.promptV3Features": true,
  "colorize.languages": ["css", "sass", "scss", "less", "postcss", "sss", "stylus", "xml", "svg", "javascript", "javascriptreact", "typescript", "typescriptreact"],
  "editor.codeActionsOnSave": {
    "source.fixAll": true
  },
  "editor.largeFileOptimizations": false,
  "editor.minimap.enabled": true,
  "editor.renderIndentGuides": false,
  "editor.renderWhitespace": "none",
  "editor.rulers": [100],
  "editor.showFoldingControls": "always",
  "editor.tabSize": 2,
  "emmet.includeLanguages": {
    "javascript": "javascriptreact"
  },
  "emmet.syntaxProfiles": {
    "javascript": ["js", "jsx"]
  },
  "eslint._legacyModuleResolve": true,
  "eslint.alwaysShowStatus": true,
  "eslint.packageManager": "yarn",
  "explorer.confirmDelete": false,
  "explorer.confirmDragAndDrop": false,
  "files.associations": {
    "*.graphqls": "graphql"
  },
  "files.autoSave": "off",
  "files.eol": "\n",
  "files.participants.timeout": 0,
  "git.autofetch": true,
  "git.enableSmartCommit": true,
  "git.inputValidationSubjectLength": 72,
  "javascript.updateImportsOnFileMove.enabled": "always",
  "javascript.validate.enable": false,
  "material-icon-theme.showUpdateMessage": false,
  "npm.enableScriptExplorer": true,
  "npm.scriptExplorerAction": "run",
  "peacock.affectActivityBar": false,
  "peacock.affectTitleBar": false,
  "peacock.favoriteColors": [{
    "name": "Angular Red",
    "value": "#b52e31"
  }, {
    "name": "Auth0 Orange",
    "value": "#eb5424"
  }, {
    "name": "Azure Blue",
    "value": "#007fff"
  }, {
    "name": "C# Purple",
    "value": "#68217A"
  }, {
    "name": "Gatsby Purple",
    "value": "#639"
  }, {
    "name": "Go Cyan",
    "value": "#5dc9e2"
  }, {
    "name": "Java Blue-Gray",
    "value": "#557c9b"
  }, {
    "name": "JavaScript Yellow",
    "value": "#f9e64f"
  }, {
    "name": "Mandalorian Blue",
    "value": "#1857a4"
  }, {
    "name": "Node Green",
    "value": "#215732"
  }, {
    "name": "React Blue",
    "value": "#00b3e6"
  }, {
    "name": "Something Different",
    "value": "#832561"
  }, {
    "name": "Vue Green",
    "value": "#42b883"
  }],
  "scm.defaultViewMode": "tree",
  "sync.autoDownload": false,
  "sync.autoUpload": false,
  "sync.forceDownload": false,
  "sync.gist": "140cb49bd5ae6404af78e9636059cd89",
  "sync.quietSync": false,
  "sync.removeExtensions": true,
  "sync.syncExtensions": true,
  "terminal.integrated.rendererType": "auto",
  "terminal.integrated.scrollback": 10000,
  "typescript.tsserver.log": "verbose",
  "window.zoomLevel": 0,
  "workbench.activityBar.visible": true,
  "workbench.colorTheme": "One Monokai",
  "workbench.editor.showTabs": true,
  "workbench.iconTheme": "material-icon-theme",
  "workbench.sideBar.location": "left",
  "workbench.startupEditor": "welcomePage",
  "workbench.tree.renderIndentGuides": "none"
}
vscodebot[bot] commented 4 years ago

(Experimental duplicate detection) Thanks for submitting this issue. Please also check if it is already covered by an existing one, like:

dbaeumer commented 4 years ago

@ChiefORZ that is very strange. Do you have a repository I can clone that demos this? I tried it im my setup and I couldn't reproduce it.

ChiefORZ commented 4 years ago

@dbaeumer no, not really. its only happening occasionally, while working. The "Running Save Participants" (pre Insiders) is then running in an endless loop and the file never gets saved...

searching through the "Issues" i think you have bug with the "Running Save Participants" and i just wanted to point in another direction

dbaeumer commented 4 years ago

Without steps it is very hard to say why this is happening. Does the file show any eslint errors in that case?

ChiefORZ commented 4 years ago

No, i dont see any eslint errors - i think the logging is not detailed enough..

I now enabled Logging with trace level - i can send the stack trace when the thing happens not as expected.

dbaeumer commented 4 years ago

Thanks!

vscodebot[bot] commented 4 years ago

This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines.

Happy Coding!