|
1 | 1 | { |
2 | | - "plantuml.diagramsRoot": "assets/diagrams/src", |
3 | | - "plantuml.exportFormat": "svg", |
4 | | - "plantuml.exportOutDir": "assets/diagrams/out", |
5 | | - "plantuml.java": "C:\\Program Files\\OpenJDK\\jdk-22.0.2\\bin\\java.exe", |
6 | | - "plantuml.render": "Local", |
7 | | - "python.analysis.autoIndent": true, |
8 | | - "python.analysis.completeFunctionParens": true, |
9 | | - "python.analysis.diagnosticSeverityOverrides": { |
10 | | - "reportDuplicateImport": "warning", |
11 | | - "reportUndefinedVariable": "information", |
12 | | - "reportUnusedVariable": "information" |
| 2 | + "jupyter.defaultKernel": "apim-samples", |
| 3 | + "jupyter.kernels.changeKernelIdForNotebookEnabled": false, |
| 4 | + "jupyter.preferredKernelIdForNotebook": { |
| 5 | + "*.ipynb": "apim-samples" |
13 | 6 | }, |
14 | | - "python.analysis.extraPaths": [ |
15 | | - "${workspaceFolder}/shared/python" |
16 | | - ], |
17 | | - "python.defaultInterpreterPath": "/workspaces/Apim-Samples/.venv/bin/python", |
18 | | - "python.pythonPath": "/workspaces/Apim-Samples/.venv/bin/python", |
19 | | - "python.envFile": "${workspaceFolder}/.env", |
20 | | - "python.terminal.activateEnvironment": true, |
21 | | - "python.terminal.activateEnvInCurrentTerminal": true, |
22 | | - "jupyter.askForKernelRestart": false, |
23 | | - "jupyter.interactiveWindow.textEditor.executeSelection": true, |
24 | | - "jupyter.notebookFileRoot": "${workspaceFolder}", |
25 | | - "jupyter.kernels.excludePythonEnvironments": [ |
26 | | - "**/anaconda3/**", |
27 | | - "**/conda/**", |
28 | | - "**/miniconda3/**", |
29 | | - "**/python3.*", |
30 | | - "*/site-packages/*", |
31 | | - "/bin/python", |
32 | | - "/bin/python3", |
33 | | - "/opt/python/*/bin/python*", |
34 | | - "/usr/bin/python", |
35 | | - "/usr/bin/python3", |
36 | | - "/usr/local/bin/python", |
37 | | - "/usr/local/bin/python3", |
38 | | - "python", |
39 | | - "python3" |
40 | | - ], |
41 | 7 | "jupyter.kernels.trusted": [ |
42 | | - "/workspaces/Apim-Samples/.venv/bin/python" |
| 8 | + "./.venv/Scripts/python.exe" |
43 | 9 | ], |
44 | | - "terminal.integrated.env.windows": { |
45 | | - "PATH": "${env:PATH}" |
46 | | - }, |
47 | | - "terminal.integrated.showExitAlert": false, |
48 | | - "terminal.integrated.focusAfterRun": "terminal", |
49 | | - "terminal.integrated.defaultProfile.linux": "bash", |
50 | | - "workbench.panel.defaultLocation": "bottom", |
51 | | - "workbench.startupEditor": "none", |
52 | | - "workbench.panel.defaultPanelHeight": 350, |
53 | | - "workbench.view.alwaysShowHeaderActions": true, |
54 | | - "terminal.integrated.tabs.enabled": true, |
55 | | - "terminal.integrated.tabs.location": "left", |
56 | | - "xml.validation.enabled": false, |
57 | | - "xml.validation.namespaces.enabled": "never", |
58 | | - "xml.validation.schema.enabled": "never", |
59 | | - "xml.validation.disallowDocTypeDecl": false, |
60 | | - "xml.validation.resolveExternalEntities": false, |
61 | | - "xml.format.enabled": false, |
62 | | - "xml.format.emptyElements": "ignore", |
63 | | - "xml.format.enforceQuoteStyle": "preferred", |
64 | | - "xml.format.preserveEmptyContent": true, |
65 | | - "xml.format.preserveSpace": [ |
66 | | - "xsl:text", |
67 | | - "xsl:comment", |
68 | | - "xsl:processing-instruction", |
69 | | - "literal", |
70 | | - "xsl:preserve-space", |
71 | | - "fragment", |
72 | | - "condition" |
| 10 | + "jupyter.kernels.excludePythonEnvironments": [ |
| 11 | + "apim-samples" |
73 | 12 | ], |
74 | | - "xml.format.splitAttributes": "preserve", |
75 | | - "xml.format.joinCDATALines": false, |
76 | | - "xml.format.joinCommentLines": false, |
77 | | - "xml.format.joinContentLines": false, |
78 | | - "xml.format.spaceBeforeEmptyCloseTag": true, |
79 | | - "xml.format.xsiSchemaLocationSplit": "onPair", |
80 | | - "xml.completion.autoCloseTags": true, |
81 | | - "xml.codeLens.enabled": false, |
82 | | - "xml.preferences.includeSchemaAssociations": "never", |
83 | | - "xml.trace.server": "off", |
84 | | - "files.associations": { |
85 | | - "*.xml": "xml", |
86 | | - "**/apim-policies/*.xml": "xml", |
87 | | - "**/samples/**/*.xml": "xml", |
88 | | - "pf-*.xml": "xml", |
89 | | - "hr_*.xml": "xml" |
90 | | - }, |
91 | | - "html.validate": false, |
92 | | - "azureApiManagement.policies.validateSyntax": true, |
93 | | - "azureApiManagement.policies.showCodeLens": true, |
94 | | - "[xml]": { |
95 | | - "editor.quickSuggestions": { |
96 | | - "other": true, |
97 | | - "comments": false, |
98 | | - "strings": true |
99 | | - }, |
100 | | - "editor.autoClosingBrackets": "always", |
101 | | - "editor.autoClosingQuotes": "always", |
102 | | - "editor.suggest.insertMode": "replace", |
103 | | - "editor.formatOnSave": false, |
104 | | - "editor.formatOnPaste": false, |
105 | | - "editor.formatOnType": false |
106 | | - } |
| 13 | + "files.trimTrailingWhitespace": true, |
| 14 | + "files.insertFinalNewline": true, |
| 15 | + "files.trimFinalNewlines": true, |
| 16 | + "editor.renderWhitespace": "trailing", |
| 17 | + "python.defaultInterpreterPath": "./.venv/Scripts/python.exe", |
| 18 | + "python.pythonPath": "./.venv/Scripts/python.exe", |
| 19 | + "python.envFile": "${workspaceFolder}/.env", |
| 20 | + "notebook.defaultLanguage": "python", |
| 21 | + "notebook.kernelPickerType": "mru", |
| 22 | + "terminal.integrated.defaultProfile.windows": "PowerShell", |
| 23 | + "plantuml.render": "Local", |
| 24 | + "plantuml.exportFormat": "svg", |
| 25 | + "plantuml.java": "C:\\Program Files\\OpenJDK\\jdk-22.0.2\\bin\\java.exe", |
| 26 | + "plantuml.diagramsRoot": "assets/diagrams/src", |
| 27 | + "plantuml.exportOutDir": "assets/diagrams/out" |
107 | 28 | } |
0 commit comments