Skip to content
Snippets Groups Projects
settings.json 575 B
Newer Older
Matteo Parrucci's avatar
Matteo Parrucci committed
{
    "files.exclude": {
        "**/*.py[co]": true,
        "**/*.so": true,
        "**/__pycache__": true
    },
    "python.pythonPath": "/usr/local/bin/python",
    "python.linting.enabled": true,
    "python.linting.flake8Enabled": true,
    "python.linting.flake8Args": [
        "--exclude: .+/migrations/",
        "--max-line-length=119"
    ],
    "python.linting.pylintArgs": [
	"--load-plugins=pylint_django",
        "-d",
        "E0239",
        "-d",
        "C0111"
    ],
    "python.linting.pylintEnabled": true,
    "python.sortImports.path": "isort"
}