-
Notifications
You must be signed in to change notification settings - Fork 1
/
vs_code_settings.json.j2
68 lines (68 loc) · 1.79 KB
/
vs_code_settings.json.j2
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
{
"C_Cpp.intelliSenseEngine": "disabled",
"bazel.lsp.command": "starpls",
"editor.formatOnSave": true,
"python.languageServer": "None",
"shellcheck.run": "onType",
"editor.codeActionsOnSave": {
"source.fixAll.shellcheck": "explicit"
},
"linter.linters": {
"yamllint": {
"enabled": true
},
"sqlfluff": {
"enabled": true
}
},
"bazel.buildifierExecutable": "{{ home_dir }}/go/bin/buildifier",
"bazel.buildifierFixOnFormat": true,
"ansible.python.interpreterPath": "/bin/python3",
"[cpp]": {
"editor.defaultFormatter": "xaver.clang-format"
},
"clangd.arguments": [
"--enable-config"
],
"C/C++ Include Guard.Comment Style": "Line",
"C/C++ Include Guard.File Path Pascal Case to Snake Case": true,
"C/C++ Include Guard.Macro Type": "Filepath",
"C/C++ Include Guard.Remove Extension": false,
"C/C++ Include Guard.Spaces After Endif": 2,
"C/C++ Include Guard.Auto Update Include Guard": false,
"C/C++ Include Guard.Insert Blank Line": false,
"psi-header.variables": [
["company", "Stellantis"],
],
"psi-header.lang-config": [
{
"language": "cpp",
"begin": "///",
"prefix": "/// ",
"end": "///",
"forceToTop": true,
"blankLinesAfter": 1,
"beforeHeader": [],
"afterHeader": [],
},
{
"language": "python",
"begin": "###",
"prefix": "### ",
"end": "###",
"forceToTop": true,
"blankLinesAfter": 1,
"beforeHeader": [],
"afterHeader": [],
}
],
"psi-header.templates": [
{
"language": "*",
"template": [
"@file",
"@copyright Copyright <<year>> <<company>>. All right reserved",
]
}
]
}