These settings appear to do nothing:
<code>"python.analysis.exclude"
"python.analysis.include"
</code>
<code>"python.analysis.exclude"
"python.analysis.include"
</code>
"python.analysis.exclude"
"python.analysis.include"
If I do this all files are still type checked:
<code>"python.analysis.exclude": [
"**"
],
</code>
<code>"python.analysis.exclude": [
"**"
],
</code>
"python.analysis.exclude": [
"**"
],
I want to do this inclusively ie only type check a specific folder and nothing else. This seems to do nothing (all files are type checked):
<code>"python.analysis.include": [
"some-strict-code/**"
],
</code>
<code>"python.analysis.include": [
"some-strict-code/**"
],
</code>
"python.analysis.include": [
"some-strict-code/**"
],