Skip to content

Commit e534276

Browse files
committed
gitignore: ignore build/install, .codacy and heavy artifacts; avoid pushing local Codacy config
1 parent 07a8adb commit e534276

1 file changed

Lines changed: 47 additions & 0 deletions

File tree

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
# Ignore build artifacts and heavy directories
2+
/build/
3+
/install/
4+
/bin/
5+
/lib/
6+
/lib64/
7+
/lib64/
8+
/tmp/
9+
10+
# Ignore CMake and other generated files
11+
CMakeCache.txt
12+
CMakeFiles/
13+
cmake_install.cmake
14+
CTestTestfile.cmake
15+
16+
# Python
17+
__pycache__/
18+
*.pyc
19+
*.pyo
20+
*.pyd
21+
env/
22+
venv/
23+
24+
# Jupyter
25+
.ipynb_checkpoints
26+
27+
# macOS
28+
.DS_Store
29+
30+
# VSCode
31+
.vscode/
32+
33+
# Codacy local config should not be pushed
34+
.codacy/
35+
36+
# Large third-party folders (already vendored in the repo)
37+
/builtins/
38+
/bindings/pyroot/pythonizations/python/ROOT/_pythonization/__pycache__/
39+
40+
# Ignore other heavy directories
41+
/interpreter/llvm-project/
42+
/interpreter/llvm-project/build/
43+
/interpreter/llvm-project/llvm/build/
144
# rootbench has its own repo
245
rootbench
346

@@ -50,3 +93,7 @@ documentation/doxygen/*.dot
5093

5194
# Pycache
5295
__pycache__
96+
97+
98+
#Ignore vscode AI rules
99+
.github/instructions/codacy.instructions.md

0 commit comments

Comments
 (0)