{ "[html]": { "editor.defaultFormatter": "monosans.djlint" }, "[django-html]": { "editor.defaultFormatter": "monosans.djlint" }, "[python]": { "editor.codeActionsOnSave": { "source.organizeImports": true }, "editor.rulers": [ 88 ], }, "emmet.includeLanguages": { "django-html": "html" }, "files.associations": { "**/*.html": "html", "**/templates/*/*.html": "django-html", "**/templates/*": "django-txt", }, "isort.args": [ "--profile", "black" ], "editor.formatOnSave": true, "html.format.enable": false, "python.formatting.provider": "black", "python.languageServer": "Pylance", "python.linting.flake8Enabled": true, "python.linting.flake8Path": "${workspaceRoot}/.venv/bin/pflake8", "python.linting.lintOnSave": true, }