-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.settings.sample
53 lines (49 loc) · 1.36 KB
/
vscode.settings.sample
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
{
// Python Path
"python.pythonPath": "",
"python.analysis.extraPaths": [""],
// Python Linting/Formatting
"python.linting.ignorePatterns": ["**/settings.py"],
"python.linting.pylintArgs": ["--load-plugins", "pylint_django",],
"python.formatting.provider": "autopep8",
"[python]": {"editor.formatOnSave": true},
// Custom File Associations [Django-Html]
"files.associations": {
"**/*.html": "html",
"**/templates/**/*.html": "django-html",
"**/templates/**/*": "django-txt",
},
"emmet.includeLanguages": {"django-html": "html"},
"[django-html]": {
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.defaultFormatter": "HookyQR.beautify",
"editor.formatOnSave": true,
},
// Beautify Configuration
"beautify.language": {
"html": [
"html",
"django-html",
]
},
"beautify.config": {
"html": {
"indent_size": 2,
"max_preserve_newlines": 1,
"end_with_newline": true,
},
},
// Excludes
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true,
"env": true,
"**/__pycache__": true,
".pytest_cache": true,
},
}