You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Our testing setup doesn't allow passing CLI arguments, so local devs have to set this manually.
12
+
// "pythonVersion": "3.8",
13
+
// For now we don't mind if mypy's `type: ignore` comments accidentally suppresses pyright issues
14
+
"enableTypeIgnoreComments": true,
15
+
"typeCheckingMode": "basic",
16
+
// Too many issues caused by dynamic patching, still worth fixing when we can
17
+
"reportAttributeAccessIssue": "warning",
18
+
// Fails on Python 3.12 due to missing distutils and on cygwin CI tests
19
+
"reportAssignmentType": "warning",
20
+
"reportMissingImports": "warning",
21
+
"reportOptionalCall": "warning",
22
+
// FIXME: A handful of reportOperatorIssue spread throughout the codebase
23
+
"reportOperatorIssue": "warning",
24
+
// Deferred initialization (initialize_options/finalize_options) causes many "potentially None" issues
25
+
// TODO: Fix with type-guards or by changing how it's initialized
26
+
"reportArgumentType": "warning", // A lot of these are caused by jaraco.path.build's spec argument not being a Mapping https://github.com/jaraco/jaraco.path/pull/3
0 commit comments