-
Notifications
You must be signed in to change notification settings - Fork 0
/
cc.code-workspace
executable file
·98 lines (98 loc) · 2.11 KB
/
cc.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
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
{
"folders": [
{
"path": "."
},
],
"settings": {
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"editor.renderWhitespace": "all",
"files.trimTrailingWhitespace": true,
"editor.minimap.enabled": false,
"explorer.confirmDragAndDrop": false,
"telemetry.telemetryLevel": "off",
"workbench.iconTheme": "material-icon-theme",
"editor.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": "on",
"window.zoomLevel": 0,
"[c]": {
"files.insertFinalNewline": true,
// "editor.defaultFormatter": "keyhr.42-c-format"
},
"42norminette.command": "norminette -R CheckDefine",
"files.exclude": {
"libs/mlx_linux": true,
"**/*.o": true
},
"makefile.launchConfigurations": [
{
"cwd": "/home/mm/common_core/so_long",
"binaryPath": "/home/mm/common_core/so_long/so_long",
"binaryArgs": []
}
],
"files.associations": {
".env.production": "dotenv",
"context.h": "c",
"events.h": "c",
"window.h": "c",
"image.h": "c",
"libft.h": "c",
"get_next_line.h": "c",
"unistd.h": "c",
"game.h": "c",
"keys.h": "c",
"registry.h": "c",
"tile.h": "c",
"player.h": "c",
"entity.h": "c",
"scripting.h": "c",
"vignette.h": "c",
"sprite.h": "c",
"fs.h": "c",
"vec2.h": "c",
"std.h": "c",
"std_colors.h": "c",
"renderer.h": "c",
"map.h": "c",
"error.h": "c",
"gfx.h": "c",
"camera.h": "c",
"spawn.h": "c",
"spawners.h": "c",
"texture.h": "c",
"log.h": "c",
"math.h": "c",
"stdio.h": "c",
"rand.h": "c",
"fps.h": "c",
"time.h": "c",
"stdlib.h": "c",
"helpers.h": "c",
"manager.h": "c",
"text.h": "c",
"chests.h": "c",
"data.h": "c",
"interact.h": "c",
"ft_printf_internal.h": "c",
"ft_printf.h": "c",
"ft_sprintf_internal.h": "c",
"array": "c",
"string_view": "c",
"initializer_list": "c",
"utility": "c",
"gameplay.h": "c",
"utils.h": "c",
"checks.h": "c",
"mlx_int.h": "c",
"font.h": "c",
"def.h": "c",
"g_renderer.h": "c",
"t_parser.h": "c",
"gnl.h": "c",
"parser_utils.h": "c"
},
}
}