Python/Django

[Django] vsc settings.json 설정

insub4067 2022. 1. 16. 02:11
{
    "python.linting.pylintEnabled": false,
    "python.linting.enabled": true,
    "python.linting.flake8Enabled": true,
    "python.linting.lintOnSave": true,
    "python.formatting.provider": "black",
    "editor.formatOnSave": true,
    "python.linting.flake8Args": ["--max-line-length-88"],
    "python.pythonPath": "/Users/insub/.local/share/virtualenvs/AirBnB-9i5-lTwW/bin/python",
    "python.languageServer": "Pylance",
    "files.associations": {
        "**/*.html": "html",
        "**/templates/**/*.html": "django-html",
        "**/templates/**/*": "django-txt",
        "**/requirements{/**,*}.{txt,in}": "pip-requirements"
    },
    "emmet.includeLanguages": {
        "django-html": "html"
    }
}