forked from openai/codex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
48 lines (48 loc) · 1.12 KB
/
Copy pathpyrightconfig.json
File metadata and controls
48 lines (48 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"$schema": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pyright/schemas/pyrightconfig.schema.json",
"include": [
"src",
"tests",
"app.py"
],
"exclude": [
"**/node_modules",
"**/__pycache__",
"**/.venv",
"**/venv",
"**/site-packages",
"**/dist",
"**/build",
"**/.pytest_cache",
"**/.mypy_cache",
"**/.ruff_cache",
"**/htmlcov",
"**/.tox",
"**/.git",
"**/.idea",
"**/.vscode",
"**/.worktrees",
"**/.next",
"**/out"
],
"typeCheckingMode": "strict",
"reportMissingTypeStubs": false,
"reportMissingImports": "error",
"reportMissingModuleSource": false,
"reportUnusedImport": true,
"reportUnusedClass": true,
"reportUnusedFunction": true,
"reportUnusedVariable": true,
"reportDuplicateImport": true,
"reportWildcardImportFromLibrary": false,
"reportOptionalMemberAccess": false,
"reportOptionalSubscript": false,
"reportPrivateUsage": false,
"reportDeprecated": true,
"reportUnnecessaryTypeIgnoreComment": true,
"pythonVersion": "3.14",
"pythonPlatform": "All",
"extraPaths": [
"src"
]
}