Skip to content

Commit f3f3292

Browse files
committed
Add .gitignore
This commit adds .gitignore with the following templates: * Linux * JetBrains * Vim
0 parents  commit f3f3292

File tree

1 file changed

+117
-0
lines changed

1 file changed

+117
-0
lines changed

.gitignore

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
# ##############################################################################
2+
# Linux
3+
# ##############################################################################
4+
5+
*~
6+
7+
# temporary files which can be created if a process still has a handle open of a deleted file
8+
.fuse_hidden*
9+
10+
# KDE directory preferences
11+
.directory
12+
13+
# Linux trash folder which might appear on any partition or disk
14+
.Trash-*
15+
16+
# .nfs files are created when an open file is removed but is still being accessed
17+
.nfs*
18+
19+
# ##############################################################################
20+
# JetBrains
21+
# ##############################################################################
22+
23+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
24+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
25+
26+
# User-specific stuff
27+
.idea/**/workspace.xml
28+
.idea/**/tasks.xml
29+
.idea/**/usage.statistics.xml
30+
.idea/**/dictionaries
31+
.idea/**/shelf
32+
33+
# Generated files
34+
.idea/**/contentModel.xml
35+
36+
# Sensitive or high-churn files
37+
.idea/**/dataSources/
38+
.idea/**/dataSources.ids
39+
.idea/**/dataSources.local.xml
40+
.idea/**/sqlDataSources.xml
41+
.idea/**/dynamic.xml
42+
.idea/**/uiDesigner.xml
43+
.idea/**/dbnavigator.xml
44+
45+
# Gradle
46+
.idea/**/gradle.xml
47+
.idea/**/libraries
48+
49+
# Gradle and Maven with auto-import
50+
# When using Gradle or Maven with auto-import, you should exclude module files,
51+
# since they will be recreated, and may cause churn. Uncomment if using
52+
# auto-import.
53+
# .idea/artifacts
54+
# .idea/compiler.xml
55+
# .idea/jarRepositories.xml
56+
# .idea/modules.xml
57+
# .idea/*.iml
58+
# .idea/modules
59+
# *.iml
60+
# *.ipr
61+
62+
# CMake
63+
cmake-build-*/
64+
65+
# Mongo Explorer plugin
66+
.idea/**/mongoSettings.xml
67+
68+
# File-based project format
69+
*.iws
70+
71+
# IntelliJ
72+
out/
73+
74+
# mpeltonen/sbt-idea plugin
75+
.idea_modules/
76+
77+
# JIRA plugin
78+
atlassian-ide-plugin.xml
79+
80+
# Cursive Clojure plugin
81+
.idea/replstate.xml
82+
83+
# Crashlytics plugin (for Android Studio and IntelliJ)
84+
com_crashlytics_export_strings.xml
85+
crashlytics.properties
86+
crashlytics-build.properties
87+
fabric.properties
88+
89+
# Editor-based Rest Client
90+
.idea/httpRequests
91+
92+
# Android studio 3.1+ serialized cache file
93+
.idea/caches/build_file_checksums.ser
94+
95+
# ##############################################################################
96+
# Vim
97+
# ##############################################################################
98+
99+
# Swap
100+
[._]*.s[a-v][a-z]
101+
!*.svg # comment out if you don't need vector files
102+
[._]*.sw[a-p]
103+
[._]s[a-rt-v][a-z]
104+
[._]ss[a-gi-z]
105+
[._]sw[a-p]
106+
107+
# Session
108+
Session.vim
109+
Sessionx.vim
110+
111+
# Temporary
112+
.netrwhist
113+
*~
114+
# Auto-generated tag files
115+
tags
116+
# Persistent undo
117+
[._]*.un~

0 commit comments

Comments
 (0)