| { |
| "extends": "pyrightconfig.base.json", |
| "include": [ |
| "build", |
| "sdk", |
| "src", |
| "scripts", |
| "tools", |
| "vendor", |
| "zircon" |
| ], |
| // Static in-tree paths are added to //build/python/static_extra_paths.json5 |
| // and injected into the extraPaths of the generated pyrightconfig.base.json |
| // config that this pyrightconfig.json is extended from. |
| // |
| // This is required because the regenerator writes paths of generated Python |
| // modules into the extraPaths of $root_build_dir/pyrightconfig.base.json, |
| // and pyright clobbers variables from extended configs. |
| "exclude": [ |
| "prebuilt", |
| "**/prebuilt_symlink", |
| "**/__pycache__", |
| "out" |
| ], |
| "reportUnusedCallResult": false, |
| "reportAny": false |
| } |