그럴 수도 있지

[python] Tasks: Configure Task 본문

python

[python] Tasks: Configure Task

디벅 2022. 7. 14. 20:01
반응형

view -> Command Palette 

Tasks: Configure Task

 


 

{

    // See https://go.microsoft.com/fwlink/?LinkId=733558

    // for the documentation about the tasks.json format

    "version": "2.0.0",

    "tasks": [

        {

            "label": "Project Label",

            "type": "shell",

            "command": "python3",

            "args": [

                "${file}"

            ],

            "presentation": {

                "reveal": "always",

                "panel": "new"

            },

            "options": {

                "env": {

                    "PYTHONIOENCODING": "UTF-8"

                }

            },

            "group": {

                "kind": "build",

                "isDefault": true

            }

        }

    ]

}

반응형