diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-05 11:22:38 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-05 11:22:38 +0200 |
commit | 8c23c960426bad133484bf127f5fc5b56af8e8c7 (patch) | |
tree | d96d4ef00707088913fed0b97fb03eb56a2064c0 /.gitignore | |
parent | 4696f8d68e130632cbcdb14c2bb1dfe71355e9f6 (diff) | |
parent | a1a0f33cab731eb60051af6bd5ae78cd6660b76f (diff) |
Merge branch 'feuerrot-dockerize'
Addresses #4
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 61 |
1 files changed, 61 insertions, 0 deletions
@@ -1 +1,62 @@ /travelynx.conf + +# Created by https://www.gitignore.io/api/vim,perl +# Edit at https://www.gitignore.io/?templates=vim,perl + +### Perl ### +!Build/ +.last_cover_stats +/META.yml +/META.json +/MYMETA.* +*.o +*.pm.tdy +*.bs + +# Devel::Cover +cover_db/ + +# Devel::NYTProf +nytprof.out + +# Dizt::Zilla +/.build/ + +# Module::Build +_build/ +Build +Build.bat + +# Module::Install +inc/ + +# ExtUtils::MakeMaker +/blib/ +/_eumm/ +/*.gz +/Makefile +/Makefile.old +/MANIFEST.bak +/pm_to_blib +/*.zip + +### Vim ### +# Swap +[._]*.s[a-v][a-z] +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim + +# Temporary +.netrwhist +*~ +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +# End of https://www.gitignore.io/api/vim,perl |