Home > Software design >  vscode open unknown window when i open setting.json file
vscode open unknown window when i open setting.json file

Time:08-18

I'm very confuse about left window in my screen shot when i try to open setting.json file.

do someone know what is this window are and how to hidden them.

screen-shot-setting

CodePudding user response:

It's the arguments for the flake8 linter, look at like 23 and line 24. You can try something like

"python.linting.flake8Args": [
"--max-line-length=120"
]

CodePudding user response:

The Answer is this left window is call "default setting" from vscode

can the way to close them is add this setting into setting.json file

or remove it from setting.json file (default is should be false already)

"workbench.settings.useSplitJSON": false,

but for some reason it set to True in my setting.

  • Related