-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vscode
More file actions
131 lines (131 loc) · 4.42 KB
/
Copy path.vscode
File metadata and controls
131 lines (131 loc) · 4.42 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{ // Editor +
"files.autoSave": "off",
"editor.formatOnSave": true,
"workbench.iconTheme": "ayu",
"workbench.settings.editor": "json",
"workbench.settings.openDefaultSettings": false,
"workbench.settings.useSplitJSON": false,
"editor.fontSize": 13,
"terminal.integrated.fontSize": 12,
"editor.fontWeight": "normal",
"editor.fontFamily": "Monaco",
"editor.rulers": [
100
],
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false,
},
"editor.hover.enabled": true,
// Python Docstring
"autoDocstring.docstringFormat": "numpy",
"autoDocstring.includeExtendedSummary": true,
"autoDocstring.startOnNewLine": false,
// Python
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"autoDocstring.guessTypes": true,
"autoDocstring.quoteStyle": "\"\"\"",
// "python.testing.pytestArgs": [
// "--rootdir",
// "${workspaceFolder}/tests"
// ],
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"100"
],
"python.linting.flake8Path": "flake8",
"python.linting.flake8Args": [
"--max-line-length=100",
"--ignore=E203,W503,E402",
"--verbose",
"exclude =.git,__pycache__,docs/source/conf.py,old,build,dist,.venv,.venv /*,**/.venv/,.pytest_cache",
],
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.autoComplete.addBrackets": true,
"python.sortImports.args": [
"--profile=black"
],
// Jupyter Notebook
"jupyter.logging.level": "error",
// "python.sortImports.path": "isort",
// "python.pythonPath": "/Users/amirhessam/.pyenv/shims/python",
"python.poetryPath": "${workspaceFolder}/.venv/bin/python",
// "python.testing.pytestArgs": [],
// "python.testing.pytestPath": "pytest",
// "python.linting.mypyArgs": [
// "--follow-imports=silent",
// "--ignore-missing-imports",
// "--show-column-numbers"
// ],
// "python.linting.mypyCategorySeverity.error": "Error",
// "python.linting.mypyCategorySeverity.note": "Error",
// "python.linting.mypyEnabled": false,
// "python.linting.mypyPath": "mypy",
"code-runner.executorMap": {
"python": "$pythonPath -u $fullFileName"
},
"code-runner.showExecutionMessage": false,
"code-runner.clearPreviousOutput": true,
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"explorer.confirmDelete": false,
"python.analysis.completeFunctionParens": true,
// "editor.codeActionsOnSave": {
// "source.organizeImports": true,
// "python.sortImports": true,
// },
// HTML
"html.format.enable": true,
"html.format.wrapLineLength": 80,
// Language specific setting
// "[python]": {
// "editor.codeActionsOnSave": {
// "source.organizeImports": true
// }
// },
// dbt + SQL + YAML
"dbt.listModelsDisabled": false,
// "dbt.runModelCommandAdditionalParams": [],
"files.associations": {
// "**/dir-foo/**/*.yaml": "jinja-yaml",
// "**/dir-foo/**/*.yml": "jinja-yaml",
"**/dir-foo/**/*.yaml": "yaml",
"**/dir-foo/**/*.yml": "yaml",
"**/dir-foo/**/*.sql": "jinja-sql",
"**/dir-foo/**/docs/**/*.md": "jinja-md"
},
"redhat.telemetry.enabled": true,
"sql.linter.executablePath": "/Users/amirhessam/.pyenv/shims/sqlfluff",
"sql.linter.run": "onSave",
// "sql.linter.ignoreParsing": true,
"[jinja-sql]": {
// "editor.defaultFormatter": "mtxr.sqltools",
// "editor.defaultFormatter": "dorzey.vscode-sqlfluff",
"editor.formatOnSave": true,
"editor.autoIndent": "advanced",
},
"[sql]": {
"editor.defaultFormatter": "mtxr.sqltools",
// "editor.defaultFormatter": "dorzey.vscode-sqlfluff",
"editor.formatOnSave": true,
"editor.autoIndent": "advanced",
},
// SQL-Tools
"sqltools.format": {
"reservedWordCase": "lower",
"language": "sql",
"linesBetweenQueries": 2
},
"sqltools.formatLanguages": [
"jinja-sql"
],
"sqltools.highlightQuery": true,
"sqltools.queryParams.enableReplace": true,
"explorer.confirmDragAndDrop": false,
"jupyter.askForKernelRestart": false,
"notebook.lineNumbers": "on",
"evenBetterToml.formatter.columnWidth": 40,
}