Skip to content

Commit e47ca2c

Browse files
committed
revert
1 parent 15dac12 commit e47ca2c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pyrightconfig.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pyright/schemas/pyrightconfig.schema.json",
33
"typeshedPath": ".",
4-
"include": ["stdlib", "stubs"],
4+
"include": [
5+
"stdlib",
6+
"stubs",
7+
],
58
"exclude": [
69
// Stubs that don't work in all Python versions
710
"stubs/seaborn",
811
"stubs/shapely",
912
"stubs/geopandas",
1013
// test cases use a custom config file
11-
"**/@tests/test_cases"
14+
"**/@tests/test_cases",
1215
],
1316
"typeCheckingMode": "strict",
1417
// Allowed in base settings for incomplete stubs, checked in stricter settings
@@ -41,5 +44,5 @@
4144
// The name of the self/cls parameter is out of typeshed's control.
4245
"reportSelfClsParameterName": "none",
4346
// Not actionable in typeshed
44-
"reportDeprecated": "none"
47+
"reportDeprecated": "none",
4548
}

0 commit comments

Comments
 (0)