-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathaiq.code-workspace
76 lines (76 loc) · 2.45 KB
/
aiq.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
{
"extensions": {
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"eeyore.yapf",
"ms-python.flake8",
"ms-python.isort",
"ms-python.pylint",
"ms-python.vscode-pylance",
"stkb.rewrap"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
"austin.code-gnu-global"
]
},
"folders": [
{
"path": "."
}
],
"launch": {
"compounds": [],
"configurations": []
},
"settings": {
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "eeyore.yapf",
"editor.formatOnSave": true,
"editor.tabSize": 4,
},
"cmake.format.allowOptionalArgumentIndentation": true,
"docker.languageserver.formatter.ignoreMultilineInstructions": true,
"editor.rulers": [
120
],
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"flake8.args": [
"--max-line-length=120",
"--max-doc-length=120"
],
"isort.importStrategy": "fromEnvironment",
"pylint.args": [
"--rcfile=${workspaceFolder}/pyproject.toml"
],
"python.analysis.exclude": [
// Repeat default options
"**/node_modules",
"**/__pycache__",
".git",
// Ignore the build and dist directory
"build",
"dist",
],
"pylint.importStrategy": "fromEnvironment",
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.typeCheckingMode": "basic",
"python.languageServer": "Pylance",
"python.testing.pytestArgs": [
"-s"
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"rewrap.wrappingColumn": 120,
"yapf.args": [
"--style=${workspaceFolder}/pyproject.toml"
]
}
}