dotfiles/.config/nvim/rules/pyrightconfig.json
2025-08-27 13:20:29 +02:00

23 lines
751 B
JSON

{
"include": ["src"],
"exclude": ["**/node_modules", "**/__pycache__"],
"typeCheckingMode": "basic",
"reportUnusedImport": "none",
"reportMissingTypeStubs": "none",
"reportIgnoreCommentWithoutRule": "warning",
"reportUnreachable": "error",
"reportPrivateLocalImportUsage": "error",
"reportImplicitRelativeImport": "error",
"reportInvalidCast": "error",
"reportMissingSuperCall": false,
"reportUnusedCallResult": "information",
"reportUnusedExpression": "information",
"reportUnknownMemberType": "none",
"reportUnknownLambdaType": "none",
"reportUnknownParameterType": "none",
"reportMissingParameterType": "none",
"reportUnknownVariableType": "none",
"reportUnknownArgumentType": "none",
"reportAny": "none"
}