File: pyrightconfig.json

package info (click to toggle)
python-django-stubs 5.2.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,832 kB
  • sloc: python: 5,185; makefile: 15; sh: 8
file content (23 lines) | stat: -rw-r--r-- 654 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    "$schema": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pyright/schemas/pyrightconfig.schema.json",
    "include": [
        "django-stubs",
        "ext/django_stubs_ext",
        "mypy_django_plugin",
        "scripts",
    ],
    "exclude": [
        ".github",
        ".mypy_cache",
        "build",
        // test cases use a custom config file
        "tests/",
    ],
    "typeCheckingMode": "strict",
    "reportMissingTypeArgument": "warning",
    // Stubs are allowed to use private variables
    "reportPrivateUsage": "none",
    "stubPath": ".",
    "pythonVersion": "3.8",
    "pythonPlatform": "All",
}