강현태

Fix .gitignore

Showing 1 changed file with 170 additions and 0 deletions
1 +
2 +# Created by https://www.gitignore.io/api/c,cmake,visualstudiocode
3 +
4 +### C ###
5 +# Prerequisites
6 +*.d
7 +
8 +# Object files
9 +*.o
10 +*.ko
11 +*.obj
12 +*.elf
13 +
14 +# Linker output
15 +*.ilk
16 +*.map
17 +*.exp
18 +
19 +# Precompiled Headers
20 +*.gch
21 +*.pch
22 +
23 +# Libraries
24 +*.lib
25 +*.a
26 +*.la
27 +*.lo
28 +
29 +# Shared objects (inc. Windows DLLs)
30 +*.dll
31 +*.so
32 +*.so.*
33 +*.dylib
34 +
35 +# Executables
36 +*.exe
37 +*.out
38 +*.app
39 +*.i*86
40 +*.x86_64
41 +*.hex
42 +
43 +# Debug files
44 +*.dSYM/
45 +*.su
46 +*.idb
47 +*.pdb
48 +
49 +# Kernel Module Compile Results
50 +*.mod*
51 +*.cmd
52 +.tmp_versions/
53 +modules.order
54 +Module.symvers
55 +Mkfile.old
56 +dkms.conf
57 +
58 +### VisualStudioCode ###
59 +.vscode/*
60 +!.vscode/settings.json
61 +!.vscode/tasks.json
62 +!.vscode/launch.json
63 +!.vscode/extensions.json
64 +
65 +
66 +# End of https://www.gitignore.io/api/c,cmake,visualstudiocode
67 +
68 +*bin*
69 +lib
70 +
71 +
72 +# Created by https://www.gitignore.io/api/cmake,clion
73 +
74 +### CLion ###
75 +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
76 +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
77 +
78 +# User-specific stuff
79 +.idea/**/workspace.xml
80 +.idea/**/tasks.xml
81 +.idea/**/usage.statistics.xml
82 +.idea/**/dictionaries
83 +.idea/**/shelf
84 +
85 +# Generated files
86 +.idea/**/contentModel.xml
87 +
88 +# Sensitive or high-churn files
89 +.idea/**/dataSources/
90 +.idea/**/dataSources.ids
91 +.idea/**/dataSources.local.xml
92 +.idea/**/sqlDataSources.xml
93 +.idea/**/dynamic.xml
94 +.idea/**/uiDesigner.xml
95 +.idea/**/dbnavigator.xml
96 +
97 +# Gradle
98 +.idea/**/gradle.xml
99 +.idea/**/libraries
100 +
101 +# Gradle and Maven with auto-import
102 +# When using Gradle or Maven with auto-import, you should exclude module files,
103 +# since they will be recreated, and may cause churn. Uncomment if using
104 +# auto-import.
105 +# .idea/modules.xml
106 +# .idea/*.iml
107 +# .idea/modules
108 +
109 +# CMake
110 +cmake-build-*/
111 +
112 +# Mongo Explorer plugin
113 +.idea/**/mongoSettings.xml
114 +
115 +# File-based project format
116 +*.iws
117 +
118 +# IntelliJ
119 +out/
120 +
121 +# mpeltonen/sbt-idea plugin
122 +.idea_modules/
123 +
124 +# JIRA plugin
125 +atlassian-ide-plugin.xml
126 +
127 +# Cursive Clojure plugin
128 +.idea/replstate.xml
129 +
130 +# Crashlytics plugin (for Android Studio and IntelliJ)
131 +com_crashlytics_export_strings.xml
132 +crashlytics.properties
133 +crashlytics-build.properties
134 +fabric.properties
135 +
136 +# Editor-based Rest Client
137 +.idea/httpRequests
138 +
139 +# Android studio 3.1+ serialized cache file
140 +.idea/caches/build_file_checksums.ser
141 +
142 +### CLion Patch ###
143 +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
144 +
145 +# *.iml
146 +# modules.xml
147 +# .idea/misc.xml
148 +# *.ipr
149 +
150 +
151 +# Sonarlint plugin
152 +.idea/sonarlint
153 +
154 +### CMake ###
155 +CMakeCache.txt
156 +CMakeFiles
157 +CMakeScripts
158 +Testing
159 +Makefile
160 +cmake_install.cmake
161 +install_manifest.txt
162 +compile_commands.json
163 +CTestTestfile.cmake
164 +
165 +.DS_Store
166 +.idea/
167 +report.xml
168 +
169 +
170 +# End of https://www.gitignore.io/api/cmake,clion
...\ No newline at end of file ...\ No newline at end of file