-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
112 lines (92 loc) · 1.46 KB
/
.gitignore
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# .gitignore for JetBrains IDEs (IntelliJ IDEA, PyCharm, etc.)
.idea/
*.iml
*.iws
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
.idea/**/contentModel.xml
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
# User-specific stuff
.idea/**/gradle.xml
.idea/**/libraries/
.idea/**/runConfigurations/
.idea/**/targets/
.idea/**/projectTemplates/
# JetBrains specific files
*.ipr
*.iws
# Java related files
*.class
*.jar
*.war
*.ear
# Eclipse specific files
.project
.classpath
.settings/
bin/
tmp/
# VS Code specific files
.vscode/
.history/
# Byte-compiled Python files
*.py[cod]
__pycache__/
*.so
# Python virtual environment
env/
venv/
ENV/
VENV/
# Python distribution/packaging
*.egg-info/
*.egg
dist/
build/
*.whl
# Java log files
*.log
# Maven specific files
target/
# Gradle specific files
.gradle/
build/
out/
!gradle-wrapper.jar
# OS generated files
.DS_Store
Thumbs.db
# Logs and temp files
*.log
*.tmp
# Exclude all `.env` files for environment variables
.env
.env.*
# General IDE-specific files
*.swp
*.swo
*~
# Exclude IntelliJ IDEA files
out/
.idea/
*.ipr
*.iws
*.iml
# Ignore JetBrains Rider project files
.idea/workspace.xml
.idea/tasks.xml
# Exclude JetBrains IDE-related folders
.idea/
# Ignore database folders
.idea/dataSources/
# Ignore code styles
.idea/codeStyles/
.idea/inspectionProfiles/