Skip to content

Instantly share code, notes, and snippets.

@rahaalizade
Created September 22, 2021 15:39
Show Gist options
  • Select an option

  • Save rahaalizade/1f86ac72fa98c365251d3b9f24cc6e9c to your computer and use it in GitHub Desktop.

Select an option

Save rahaalizade/1f86ac72fa98c365251d3b9f24cc6e9c to your computer and use it in GitHub Desktop.
{
"python.pythonPath": ".env/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintUseMinimalCheckers": false,
"python.linting.pydocstyleArgs": ["--ignore=D400"],
"python.linting.pylintArgs": [
"--load-plugins",
"pylint_django",
"--load-plugins",
"pylint_django.checkers.migrations",
"--disable=C0114, C0115, W0222",
"--disable=line-too-long",
"--disable=django-not-configured",
"--ignore=D4",
"--django-settings-module=module_name.settings"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment