-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturu-py.code-workspace
86 lines (86 loc) · 2.55 KB
/
turu-py.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"folders": [
{
"name": "turu",
"path": ".",
},
{
"path": "docs",
},
{
"path": "turu-core",
},
{
"path": "turu-sqlite3",
},
{
"path": "turu-postgres",
},
{
"path": "turu-mysql",
},
{
"path": "turu-snowflake",
},
{
"path": "turu-bigquery",
},
],
"settings": {
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"editor.useTabStops": true,
"editor.trimAutoWhitespace": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.comments.insertSpace": true,
"python.analysis.addImport.exactMatchOnly": false,
"python.analysis.autoImportCompletions": true,
"python.analysis.completeFunctionParens": false,
"python.analysis.extraPaths": [],
"python.analysis.importFormat": "absolute",
"python.analysis.indexing": true,
"python.analysis.typeCheckingMode": "basic",
"python.globalModuleInstallation": true,
"python.testing.pytestEnabled": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": "explicit"
},
"editor.tabSize": 4,
"editor.rulers": [
88
],
"editor.defaultFormatter": "charliermarsh.ruff",
},
"yaml.schemas": {
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
},
"yaml.customTags": [
"!ENV scalar",
"!ENV sequence",
"!relative scalar",
"tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg",
"tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji",
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
],
},
"extensions": {
"recommendations": [
"charliermarsh.ruff",
"ms-python.python",
"ms-python.vscode-pylance",
"ryanluker.vscode-coverage-gutters"
],
"unwantedRecommendations": [
"matangover.mypy",
"ms-python.black-formatter",
"ms-python.flake8",
"ms-python.isort",
"ms-python.mypy-type-checker",
]
}
}