blob: 9c7508185980278c2118f0c9357f9a5eebdb95cf [file] [log] [blame]
Marc Kupietz846e1492024-09-11 19:10:31 +02001# Ignore the .git directory
2.git/
3
4# Ignore the .idea directory
5.idea/
6
7# Ignore compiled Perl files
8_Inline/
9
10# Ignore version control folders and metadata
11.gitignore
12.gitattributes
13.gitlab-ci.yml
14.gitlab-ci.local/
15.github/
16
17# Ignore the Dockerfile itself
18Dockerfile
19Dockerfile.*
20
21# Ignore test files
22t/
23test/
24*.t
25
26# Ignore Perl-specific files
27*.swp # Vim swap files
28*.bak # Backup files
29*.tmp # Temporary files
30
31# Ignore common temporary files and folders
32*.log
33*.tmp
34*.bak
35*.old
36*.orig
37
38# Ignore Perl modules installation folder (local::lib)
39local/
40
41# Ignore documentation files
42**/*.md
43
44# Ignore distribution build and packaging files
45Build/
46MYMETA.*
47Makefile
48Makefile.old
49pm_to_blib