Skip to content

Commit ae23f62

Browse files
committed
Modified .gitignore
1 parent 28e7413 commit ae23f62

1 file changed

Lines changed: 31 additions & 23 deletions

File tree

.gitignore

Lines changed: 31 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,57 +4,65 @@
44
#
55
################################################################################
66

7-
# MacOS files
7+
# Operating System files
88
.DS_Store
9+
Thumbs.db
910

1011
# Compiled Python modules
1112
*.pyc
13+
__pycache__/
1214
*.so
1315
*.pyd
1416

15-
# PyCharm project files
16-
.idea/*
17+
# Build and distribution artifacts
18+
build/
19+
dist/
20+
*.egg-info/
21+
.eggs/
22+
23+
# Virtual environments
1724
venv/
25+
.venv/
1826

19-
# VS Code Local History files
27+
# IDE and editor files
28+
.idea/
29+
.vscode/
2030
.history/*
2131

22-
# Projects
32+
# User-generated content / Scratch directories
2333
Projects/
24-
25-
# Examples
2634
examples/
35+
scratch/
2736

28-
# Unit test files
37+
# Testing and coverage files
2938
.coverage
3039
testing/*
3140
htmlcov/*
3241
arc/testing/gcn_tst/
3342

34-
# Scratch
35-
scratch/
36-
37-
# csv database
43+
# Database files
3844
*.csv
45+
*.db
46+
*.sqlite3
3947

40-
# iPython files
48+
# iPython/Jupyter files
4149
*.ipynb_*
50+
.ipynb_checkpoints/
4251

4352
# Compiled documentation
4453
docs/build/*
4554

46-
# deleted files
55+
# Temporary/System files
4756
**/.fuse_hidden*
57+
*~
58+
.#*
4859

49-
# timer.dat
60+
# Specific output files
5061
timer.dat
51-
52-
# .vscode
53-
.vscode
54-
55-
# .trunk folder
56-
.trunk
57-
58-
# ignore files created from tests
5962
nul
6063
run.out
64+
*.log
65+
*.err
66+
67+
# Trunk Check
68+
.trunk

0 commit comments

Comments
 (0)