-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
34 lines (34 loc) · 1.11 KB
/
settings.json
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
{
"python.analysis.autoImportCompletions": true,
"python.analysis.autoImportUserSymbols": true,
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.completeFunctionParens": true,
"[python]": {
"editor.formatOnType": true,
"editor.defaultFormatter": "ms-python.black-formatter"
},
"files.associations": {
"*.py": "python"
},
"Notes.notesLocation": "/home/marc/work/notes",
"sqlfluff.config": "~/work/data-sharing/.sqlfluff",
"sqlfluff.executablePath": "sqlfluff.py",
"sqlfluff.experimental.format.executeInTerminal": true,
"sqlfluff.linter.run": "onSave",
"editor.largeFileOptimizations": false,
"workbench.colorTheme": "Default Dark+",
"githubPullRequests.pullBranch": "never",
"files.exclude": {
"**/__pycache__": true
},
"editor.inlineSuggest.enabled": true,
"editor.formatOnSave": true,
"files.eol": "\n",
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true,
"scminput": false
},
"github.copilot.editor.enableAutoCompletions": true
}