|  | # Ignore the .git directory | 
|  | .git/ | 
|  |  | 
|  | # Ignore the .idea directory | 
|  | .idea/ | 
|  |  | 
|  | # Ignore compiled Perl files | 
|  | _Inline/ | 
|  |  | 
|  | # Ignore version control folders and metadata | 
|  | .gitignore | 
|  | .gitattributes | 
|  | .gitlab-ci.yml | 
|  | .gitlab-ci.local/ | 
|  | .github/ | 
|  |  | 
|  | # Ignore the Dockerfile itself | 
|  | Dockerfile | 
|  | Dockerfile.* | 
|  |  | 
|  | # Ignore test files | 
|  | t/ | 
|  | test/ | 
|  | *.t | 
|  |  | 
|  | # Ignore Perl-specific files | 
|  | *.swp             # Vim swap files | 
|  | *.bak             # Backup files | 
|  | *.tmp             # Temporary files | 
|  |  | 
|  | # Ignore common temporary files and folders | 
|  | *.log | 
|  | *.tmp | 
|  | *.bak | 
|  | *.old | 
|  | *.orig | 
|  |  | 
|  | # Ignore Perl modules installation folder (local::lib) | 
|  | local/ | 
|  |  | 
|  | # Ignore documentation files | 
|  | **/*.md | 
|  |  | 
|  | # Ignore distribution build and packaging files | 
|  | Build/ | 
|  | MYMETA.* | 
|  | Makefile | 
|  | Makefile.old | 
|  | pm_to_blib |