Skip to content

Commit 84d9e0c

Browse files
committed
Add initial pyright config file
This runs pyright with default settings against everything in "toolz", except for tests and _version.py
1 parent 386c750 commit 84d9e0c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

pyrightconfig.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"include": [
3+
"toolz"
4+
],
5+
"exclude": [
6+
"**/__pycache__",
7+
"**/tests"
8+
],
9+
"ignore": [
10+
"toolz/_version.py"
11+
],
12+
"pythonVersion": "3.5",
13+
"pythonPlatform": "All",
14+
"stubPath": "",
15+
"typeCheckingMode": "basic",
16+
"reportUnnecessaryTypeIgnoreComment": true
17+
}

0 commit comments

Comments
 (0)