-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
28 lines (28 loc) · 919 Bytes
/
Copy pathsettings.json
File metadata and controls
28 lines (28 loc) · 919 Bytes
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
{
"python.analysis.extraPaths": [
"./src"
],
"explorer.compactFolders": false,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"python.formatting.provider": "black",
"python.formatting.autopep8Args": [
"--max-line-length=160"
],
"sqltools.connections": [
{
"mssqlOptions": {
"appName": "SQLTools",
"useUTC": true,
"encrypt": true
},
"previewLimit": 50,
"server": "localhost",
"driver": "MSSQL",
"name": "AI_DB",
"group": "AI_DB",
"connectString": "Driver={ODBC Driver 18 for SQL Server};Server=tcp:ai-db-server-614.database.windows.net,1433;Database=ai-db;Uid=marfra;Pwd=M@pleCustom821251414;Encrypt=yes;TrustServerCertificate=no;Connection Timeout=30;"
}
]
}