File tree Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change
1
+ # ==============================================================================#
2
+ # File extensions to be ignored anywhere in the tree.
3
+ # Derived from LLVM (https://github.com/llvm/llvm-project/blob/main/.gitignore).
4
+ # ==============================================================================#
5
+ # Temp files created by most text editors.
6
+ * ~
7
+ # Merge files created by git.
8
+ * .orig
9
+ # Reject files created by patch.
10
+ * .rej
11
+ # Byte compiled python modules.
12
+ * .pyc
13
+ # vim swap files
14
+ . * .sw ?
15
+ .sw ?
16
+ # OS X specific files.
17
+ .DS_store
18
+
19
+ # Ignore the user specified CMake presets in subproject directories.
20
+ /* /CMakeUserPresets.json
21
+
22
+ # Nested build directory
23
+ /build *
24
+
25
+ # ==============================================================================#
26
+ # Explicit files to ignore (only matches one).
27
+ # ==============================================================================#
28
+ .gitusers
29
+ /compile_commands.json
30
+ # Visual Studio built-in CMake configuration
31
+ /CMakeSettings.json
32
+ # CLion project configuration
33
+ /.idea
34
+
35
+ # ==============================================================================#
36
+ # Directories to ignore (do not add trailing '/'s, they skip symlinks).
37
+ # ==============================================================================#
38
+ # VS2017 and VSCode config files.
39
+ .vscode
40
+ .vs
41
+ # pythonenv for github Codespaces
42
+ pythonenv *
43
+ # clangd index. (".clangd" is a config file now, thus trailing slash)
44
+ .clangd /
45
+ .cache
You can’t perform that action at this time.
0 commit comments