Skip to content

Instantly share code, notes, and snippets.

@nikiforidi
Last active April 13, 2021 15:06
Show Gist options
  • Select an option

  • Save nikiforidi/d333b565321706fd736e5675182d7b44 to your computer and use it in GitHub Desktop.

Select an option

Save nikiforidi/d333b565321706fd736e5675182d7b44 to your computer and use it in GitHub Desktop.

Revisions

  1. nikiforidi revised this gist Apr 13, 2021. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion settings.json
    Original file line number Diff line number Diff line change
    @@ -6,7 +6,8 @@
    "python.linting.pylintArgs": [
    "--load-plugins",
    "pylint_django",
    "--django-settings-module=core.settings"
    "--django-settings-module=core.settings",
    "--max-line-length=120"
    ],
    "python.formatting.provider": "black",
    "python.formatting.blackArgs": [
  2. nikiforidi revised this gist Apr 13, 2021. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion settings.json
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,4 @@
    {
    "python.pythonPath": "/home/anatolio/.cache/pypoetry/virtualenvs/django-test-auth-llq7QJrO-py3.9/bin/python",
    "editor.formatOnSave": true,
    "python.linting.lintOnSave": true,
    "python.linting.enabled": true,
  3. nikiforidi created this gist Apr 13, 2021.
    19 changes: 19 additions & 0 deletions settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    {
    "python.pythonPath": "/home/anatolio/.cache/pypoetry/virtualenvs/django-test-auth-llq7QJrO-py3.9/bin/python",
    "editor.formatOnSave": true,
    "python.linting.lintOnSave": true,
    "python.linting.enabled": true,
    "python.linting.pylintEnabled": true,
    "python.linting.pylintArgs": [
    "--load-plugins",
    "pylint_django",
    "--django-settings-module=core.settings"
    ],
    "python.formatting.provider": "black",
    "python.formatting.blackArgs": [
    "--line-length=120"
    ],
    "editor.codeActionsOnSave": {
    "source.organizeImports": true
    }
    }