| Marc Kupietz | 846e149 | 2024-09-11 19:10:31 +0200 | [diff] [blame] | 1 | # 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 | 
|  | 18 | Dockerfile | 
|  | 19 | Dockerfile.* | 
|  | 20 |  | 
|  | 21 | # Ignore test files | 
|  | 22 | t/ | 
|  | 23 | test/ | 
|  | 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) | 
|  | 39 | local/ | 
|  | 40 |  | 
|  | 41 | # Ignore documentation files | 
|  | 42 | **/*.md | 
|  | 43 |  | 
|  | 44 | # Ignore distribution build and packaging files | 
|  | 45 | Build/ | 
|  | 46 | MYMETA.* | 
|  | 47 | Makefile | 
|  | 48 | Makefile.old | 
|  | 49 | pm_to_blib |