-
Notifications
You must be signed in to change notification settings - Fork 0
/
jmesflat.code-workspace
41 lines (41 loc) · 1.18 KB
/
jmesflat.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"notebook.output.textLineLimit": 5000,
"jupyter.debugJustMyCode": true,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"python.languageServer": "Pylance",
"black-formatter.args": ["-l", "99"],
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": ["--rootdir", "${workspaceFolder}/tests"],
"mypy-type-checker.args": [
"--check-untyped-defs",
"--ignore-missing-imports",
"--implicit-optional"
],
"mypy-type-checker.ignorePatterns": ["scripts/*", "testbench.py"],
"pylint.args": [
"--generated-members=numpy.*,pdftotext.*,cv2.*",
"--disable=W0311,R0903"
],
"pylint.ignorePatterns": [
"**/site-packages/**/*.py",
"./.vscode/*.py",
"**/tests/**",
"**/scripts/**",
"**/testbench.py"
],
"jupyter.interactiveWindow.textEditor.autoAddNewCell": false,
"isort.check": false,
"mypy-type-checker.reportingScope": "file",
"mypy-type-checker.preferDaemon": false
}
}