Commit Graph

5 Commits

Author SHA1 Message Date
Arkadiusz Drabczyk
9afa0ed288 Add missing newlines
On *nix systems it's a common convention to end a file with an empty
newline. It also helps if the newline is present if user wants to
simply cat a file in the command line.

I used the following one-liner to automatically add newlines in all
files that don't have it:

    $ find . -path ./.git -prune -o -type f -a ! -name .keep -exec sh -c '[[ $(tail -c1 "$1" | wc -l) -gt 0 ]] || echo >> "$1"' sh {} \;
2024-06-25 20:25:38 +02:00
FantasticFiasco
ce7e42ca18
chore: remove unnecessary .keep files
'.keep' files where committed early on to build a directory structure. Since then other files have been added to those directories, making
them unnecessary.
2019-07-17 00:22:40 +02:00
Kyle Quest
e82886ee0b more references 2018-04-29 08:42:16 -07:00
Kyle Quest
6298595c9e more notes and notes in major directories 2018-03-24 15:55:43 -07:00
Kyle Quest
5462e30de8 initial directory layout 2017-09-09 13:10:53 -07:00