-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
100 lines (99 loc) · 2.59 KB
/
settings.json
File metadata and controls
100 lines (99 loc) · 2.59 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
{
"C_Cpp.errorSquiggles": "disabled",
"C_Cpp.default.compilerPath": "d:\\code\\.vscode\\settings.json",
"editor.fontFamily": "'FiraCode-Retina'",
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"editor.fontLigatures": true,
"C_Cpp_Runner.msvcBatchPath": "",
"C_Cpp_Runner.cCompilerPath": "gcc",
"C_Cpp_Runner.cppCompilerPath": "g++",
"C_Cpp_Runner.debuggerPath": "gdb",
"C_Cpp_Runner.cStandard": "",
"C_Cpp_Runner.cppStandard": "",
"C_Cpp_Runner.useMsvc": false,
"C_Cpp_Runner.warnings": [
"-Wall",
"-Wextra",
"-Wpedantic",
"-Wshadow",
"-Wformat=2",
"-Wcast-align",
"-Wconversion",
"-Wsign-conversion",
"-Wnull-dereference"
],
"C_Cpp_Runner.msvcWarnings": [
"/W4",
"/permissive-",
"/w14242",
"/w14287",
"/w14296",
"/w14311",
"/w14826",
"/w44062",
"/w44242",
"/w14905",
"/w14906",
"/w14263",
"/w44265",
"/w14928"
],
"C_Cpp_Runner.enableWarnings": true,
"C_Cpp_Runner.warningsAsError": false,
"C_Cpp_Runner.compilerArgs": [],
"C_Cpp_Runner.linkerArgs": [],
"C_Cpp_Runner.includePaths": [],
"C_Cpp_Runner.includeSearch": [
"*",
"**/*"
],
"C_Cpp_Runner.excludeSearch": [
"**/build",
"**/build/**",
"**/.*",
"**/.*/**",
"**/.vscode",
"**/.vscode/**"
],
"C_Cpp_Runner.useAddressSanitizer": false,
"C_Cpp_Runner.useUndefinedSanitizer": false,
"C_Cpp_Runner.useLeakSanitizer": false,
"C_Cpp_Runner.showCompilationTime": false,
"C_Cpp_Runner.useLinkTimeOptimization": false,
"files.associations": {
"ostream": "cpp",
"iostream": "cpp",
"cmath": "cpp",
"initializer_list": "cpp",
"cstdarg": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"exception": "cpp",
"limits": "cpp",
"new": "cpp",
"type_traits": "cpp",
"typeinfo": "cpp",
"*.tcc": "cpp",
"string": "cpp",
"ratio": "cpp",
"valarray": "cpp"
},
"platformio-ide.autoCloseSerialMonitor": true,
"C_Cpp_Runner.msvcSecureNoWarnings": false,
"powermode.enabled": true,
"powermode.shake.enabled": true,
"powermode.explosions.maxExplosions": 1,
"powermode.explosions.backgroundMode": "mask",
"powermode.presets": "flames",
"powermode.shake.intensity": 0.3,
"powermode.explosions.duration": 350,
"powermode.explosions.frequency": 1,
"powermode.explosions.size": 7,
"powermode.explosions.offset": 0.8,
"powermode.combo.timeout": 30,
"powermode.combo.location": "off",
"powermode.combo.counterEnabled": "hide",
"powermode.explosions.enabled": true,
"powermode.explosions.gifMode": "continue",
}