Skip to content

Commit 73702ab

Browse files
committed
chore: created .gitignore 🔧
1 parent 55209bf commit 73702ab

File tree

1 file changed

+131
-0
lines changed

1 file changed

+131
-0
lines changed

.gitingore

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
# Created by
2+
https://www.toptal.com/developers/gitignore/api/macos,intellij+all
3+
# Edit at
4+
https://www.toptal.com/developers/gitignore?templates=macos,intellij+all
5+
6+
### Intellij+all ###
7+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm,
8+
CLion, Android Studio, WebStorm and Rider
9+
# Reference:
10+
https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
11+
12+
# User-specific stuff
13+
.idea/**/workspace.xml
14+
.idea/**/tasks.xml
15+
.idea/**/usage.statistics.xml
16+
.idea/**/dictionaries
17+
.idea/**/shelf
18+
19+
# AWS User-specific
20+
.idea/**/aws.xml
21+
22+
# Generated files
23+
.idea/**/contentModel.xml
24+
25+
# Sensitive or high-churn files
26+
.idea/**/dataSources/
27+
.idea/**/dataSources.ids
28+
.idea/**/dataSources.local.xml
29+
.idea/**/sqlDataSources.xml
30+
.idea/**/dynamic.xml
31+
.idea/**/uiDesigner.xml
32+
.idea/**/dbnavigator.xml
33+
34+
# Gradle
35+
.idea/**/gradle.xml
36+
.idea/**/libraries
37+
38+
# Gradle and Maven with auto-import
39+
# When using Gradle or Maven with auto-import, you should exclude module
40+
files,
41+
# since they will be recreated, and may cause churn. Uncomment if using
42+
# auto-import.
43+
# .idea/artifacts
44+
# .idea/compiler.xml
45+
# .idea/jarRepositories.xml
46+
# .idea/modules.xml
47+
# .idea/*.iml
48+
# .idea/modules
49+
# *.iml
50+
# *.ipr
51+
52+
# CMake
53+
cmake-build-*/
54+
55+
# Mongo Explorer plugin
56+
.idea/**/mongoSettings.xml
57+
58+
# File-based project format
59+
*.iws
60+
61+
# IntelliJ
62+
out/
63+
64+
# mpeltonen/sbt-idea plugin
65+
.idea_modules/
66+
67+
# JIRA plugin
68+
atlassian-ide-plugin.xml
69+
70+
# Cursive Clojure plugin
71+
.idea/replstate.xml
72+
73+
# SonarLint plugin
74+
.idea/sonarlint/
75+
76+
# Crashlytics plugin (for Android Studio and IntelliJ)
77+
com_crashlytics_export_strings.xml
78+
crashlytics.properties
79+
crashlytics-build.properties
80+
fabric.properties
81+
82+
# Editor-based Rest Client
83+
.idea/httpRequests
84+
85+
# Android studio 3.1+ serialized cache file
86+
.idea/caches/build_file_checksums.ser
87+
88+
### Intellij+all Patch ###
89+
# Ignore everything but code style settings and run configurations
90+
# that are supposed to be shared within teams.
91+
92+
.idea/*
93+
94+
!.idea/codeStyles
95+
!.idea/runConfigurations
96+
97+
### macOS ###
98+
# General
99+
.DS_Store
100+
.AppleDouble
101+
.LSOverride
102+
103+
# Icon must end with two \r
104+
Icon
105+
106+
107+
# Thumbnails
108+
._*
109+
110+
# Files that might appear in the root of a volume
111+
.DocumentRevisions-V100
112+
.fseventsd
113+
.Spotlight-V100
114+
.TemporaryItems
115+
.Trashes
116+
.VolumeIcon.icns
117+
.com.apple.timemachine.donotpresent
118+
119+
# Directories potentially created on remote AFP share
120+
.AppleDB
121+
.AppleDesktop
122+
Network Trash Folder
123+
Temporary Items
124+
.apdisk
125+
126+
### macOS Patch ###
127+
# iCloud generated files
128+
*.icloud
129+
130+
# End of
131+
https://www.toptal.com/developers/gitignore/api/macos,intellij+all

0 commit comments

Comments
 (0)