-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
115 lines (103 loc) · 1.34 KB
/
Copy path.gitignore
File metadata and controls
115 lines (103 loc) · 1.34 KB
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
113
114
115
# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
#
# SPDX-License-Identifier: MPL-2.0
# Environments
.env
.env.local
.env.*.local
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# VSCode configurations
# it is ignored by default so the user does not accidentally change the configuration
# if you want to changes the JSON file in .vscode folder
# please type
# git add .vscode/ --force
.vscode/
# IDEs - Visual Studio, VS Code, JetBrains
.idea/
.vs/
.vscode/
*.sln.iml
*.user
*.sln.docstates
.vscode-test/
# JetBrains IDEs (IntelliJ, PyCharm, WebStorm, CLion, etc.)
*.iml
*.iws
*.ipr
*.iml
out/
# Visual Studio
obj/
bin/
.vs/
*.user
*.userosscache
*.sln.docstates
# AI Agents & Copilot
.claude/
.copilot/
.copilot-instructions/
.ai/
# Editor backups & temp files
*.swp
*.swo
*~
*.bak
.sublime-project
.sublime-workspace
# OS-specific files
.DS_Store
Thumbs.db
.directory
# Logs
*.log
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
.python-version
.mypy_cache/
.pytest_cache/
.ruff_cache/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
dist/
build/
site/
*.egg-info/
.ipynb_checkpoints/
# C++ / CMake
*.o
*.obj
*.a
*.lib
*.dll
*.exe
*.out
*.dylib
cmake-build-*/
CMakeFiles/
CMakeCache.txt
compile_commands.json
Testing/
# Java / JVM
.gradle/
target/
*.class
*.jar
*.war
*.ear
hs_err_pid*
.classpath
.project
.settings/