skip to Main Content

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

2

Answers


  1. Chosen as BEST ANSWER

    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.


  2. 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"
    ]
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search