VSCode

Page content

{ “[python]”: { “editor.defaultFormatter”: “charliermarsh.ruff”, “editor.formatOnSave”: true, “editor.codeActionsOnSave”: { “source.organizeImports”: “explicit”, “source.fixAll”: true }, }, }

settings.json

Useful Settings for VSCode … settings.json

test -d .vscode || mkdir .vscode
cat << 'EOF' > .vscode/settings.json
{
    "[python]": {
        "editor.defaultFormatter": "charliermarsh.ruff",
        "editor.formatOnSave": true,
        "editor.codeActionsOnSave": {
            "source.organizeImports": "explicit",
            "source.fixAll": true
        },
    },
}
EOF

settings.json (old)

test -d .vscode || mkdir .vscode
cat << 'EOF' > .vscode/settings.json
{
    "python.linting.enabled": true,
    "python.linting.pylintEnabled": true,
    "python.formatting.provider": "none",
    "python.formatting.blackArgs": [
        "--line-length=100"
    ],
    "python.sortImports.args": [
        "--profile", "black"
    ],
    "editor.formatOnSave": false,
    "[python]": {
        "editor.formatOnSave": true,
        "editor.codeActionsOnSave": {
            "source.organizeImports": true
        },
        "editor.defaultFormatter": "ms-python.black-formatter",
    },
}
EOF

launch.json

cat << 'EOF' > .vscode/launch.json
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        // default config to debug your current active file with python
        {
            "name": "Python: Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "justMyCode": true
        },
        {
            "name": "Python: Test001",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}/project/code.py",
            "args": [
                "arg1",
                "arg2",
                "arg3"
            ],
            "console": "integratedTerminal"
        },
        {
            "name": "Python: FastAPI",
            "type": "python",
            "request": "launch",
            "module": "uvicorn",
            "args": [
                "app.main:app",
                "--reload"
            ]
        },
        {
            "name": "Python: Flask",
            "type": "python",
            "request": "launch",
            "module": "flask",
            "args": [
                "run",
                "--reload"
            ]
        }
    ]
}
EOF

.gitignore

cat << EOF > .gitignore
# Files
.DS_Store
backup.*
secret
secrets

# Folders
**/.DS_Store/*
**/.history/*
**/.terraform/*
**/.venv/*
**/__pycache__/*
**/cache/*
EOF

Add Basic Packages

poetry add --group dev black pylint py-pytest

keyboards shortcuts macOS

Comment block

command + k, command + u

Uncomment block

command + k, command + u

Collapse All

command + k, command + 0

Expand All

command + k, command + j

Export Extensions

code --list-extensions |xargs -L 1 echo code --install-extension |sed "s/$/ --force/"

import Extensions on another Machine

code --install-extension aaron-bond.better-comments --force
code --install-extension cnshenj.vscode-task-manager --force
code --install-extension dbaeumer.vscode-eslint --force
code --install-extension donjayamanne.python-environment-manager --force
code --install-extension eamodio.gitlens --force
code --install-extension esbenp.prettier-vscode --force
code --install-extension golang.go --force
code --install-extension hashicorp.terraform --force
code --install-extension medo64.render-crlf --force
code --install-extension mikoz.isort-formatter --force
code --install-extension ms-azuretools.vscode-docker --force
code --install-extension ms-python.black-formatter --force
code --install-extension ms-python.isort --force
code --install-extension ms-python.pylint --force
code --install-extension ms-python.python --force
code --install-extension ms-python.vscode-pylance --force
code --install-extension ms-toolsai.jupyter --force
code --install-extension ms-toolsai.jupyter-keymap --force
code --install-extension ms-toolsai.jupyter-renderers --force
code --install-extension ms-toolsai.vscode-jupyter-cell-tags --force
code --install-extension ms-toolsai.vscode-jupyter-slideshow --force
code --install-extension ms-vscode-remote.remote-containers --force
code --install-extension ms-vscode-remote.remote-ssh --force
code --install-extension ms-vscode-remote.remote-ssh-edit --force
code --install-extension ms-vscode.remote-explorer --force
code --install-extension njpwerner.autodocstring --force
code --install-extension poeticAndroid.vscode-poetry --force
code --install-extension samuelcolvin.jinjahtml --force
code --install-extension Tyriar.sort-lines --force
code --install-extension vscodevim.vim --force
code --install-extension Vue.volar --force
code --install-extension xyz.local-history --force

Any Comments ?

sha256: 7cfe691d65199c0cb594ea2880b18ef75ad7057c8b4b0887c6c779316f5e3a97