forked from xann16/simple-rans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-rans.sublime-project
92 lines (92 loc) · 1.67 KB
/
simple-rans.sublime-project
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
{
"build_systems":
[
{
"file_regex": "(.+[^:]):(\\d+):(\\d+): (?:fatal )?((?:error|warning): .+)$",
"name": "Standard Build",
"shell_cmd": "cmake --build .",
"syntax": "Packages/CMakeBuilder/Syntax/Ninja.sublime-syntax",
"working_dir": "${project_path}/build",
"variants":
[
{
"name": "clean",
"shell_cmd": "cmake --build . --target clean"
}
]
}
],
"folders":
[
{
"file_exclude_patterns":
[
"*.swp",
"*.sublime-workspace"
],
"folder_exclude_patterns":
[
"build",
"Testing"
],
"path": "."
},
{
"path": "build",
"name": "cmake-cache",
"file_include_patterns":
[
"CMakeCache.txt"
]
}
],
"settings":
{
"ClangFormat.format_on_save": true,
"ClangFormat.style": "File",
"EasyClangComplete":
{
"cpp_flags":
[
"-std=c++17"
],
"show_errors": false
},
"SublimeLinter.linters.annotations.disable": false,
"SublimeLinter.linters.annotations.errors":
[
"!!!FATAL!!!"
],
"SublimeLinter.linters.annotations.warnings":
[
"TODO",
"LEGACY",
"FIXME",
"FIX"
],
"SublimeLinter.linters.cppcheck.disable": true,
"SublimeLinter.linters.cppcheck.enable": "all",
"SublimeLinter.linters.cppcheck.std": "c++14",
"cmake":
{
"build_folder": "${project_path}/build",
"command_line_overrides":
{
},
"generator": "Ninja"
},
"compile_commands": "${project_path}/build",
"default_line_ending": "unix",
"ensure_newline_at_eof_on_save": true,
"jsoncomma_on_save": true,
"rulers":
[
80,
120
],
"save_on_focus_lost": true,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
}