Package List As One Item Per Line & Order

I prefer lists to always be one item per line and in alphabetical order.

One item per-line makes merge conflicts less likely in the future.
Alphabetic ordering should mean any duplicate entries become obvious to
a human adding items.

Other orderings that future editors can easily spot and comply with are
fine and if there is a good reason to keep stuff bunched up (saving your
scroll wheel is not one) then that is fine too.  I just use this as a
"Do the following by default" guideline.
This commit is contained in:
Thomas A. F. Thorne 2019-02-07 09:42:55 +00:00
parent 0d5702ca69
commit 1f49431829
No known key found for this signature in database
GPG Key ID: F5CB28A9146B3180
1 changed files with 11 additions and 3 deletions

View File

@ -27,9 +27,17 @@ install:
- sh: echo ... for Linux
- cmd: echo ... for Windows
- sh: sudo apt-get update && sudo apt-get install
git cmake make xorg-dev g++ libcurl4-openssl-dev \
libavahi-compat-libdnssd-dev libssl-dev libx11-dev \
libqt4-dev qtbase5-dev
cmake
g++
git
libavahi-compat-libdnssd-dev
libcurl4-openssl-dev
libqt4-dev
libssl-dev
libx11-dev
make
qtbase5-dev
xorg-dev
##### Build Phase #####