-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.code-workspace
49 lines (49 loc) · 1013 Bytes
/
workspace.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"git.ignoreLimitWarning": true,
"files.associations": {
"**/*.html": "html",
"**/templates/**/*.html": "django-html",
"**/templates/**/*": "django-txt",
"**/requirements{/**,*}.{txt,in}": "pip-requirements"
},
"autoDocstring.docstringFormat": "sphinx",
"pythonIndent.keepHangingBracketOnLine": true,
"pythonIndent.trimLinesWithOnlyWhitespace": true,
"cSpell.words": [
"corepoint",
"HRIS"
],
"editor.rulers": [90,110]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\hris_integration\\manage.py",
"args": [
"runserver"
],
"django": true
},
{
"name": "Python: Django AD Export",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\hris_integration\\manage.py",
"args": [
"runadexport"
],
"django": true
}
]
}
}