dotfiles/.gitlab-ci.yml
Severin Kaderli 8b3a294360 Fix linting errors
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2018-12-13 22:42:22 +01:00

18 lines
636 B
YAML

image: ubuntu:latest
before_script:
- apt-get update && apt-get install -y --no-install-recommends shellcheck
- alias shellcheck="shellcheck -x --exclude=SC2034,SC1091,SC1090"
Lint:
script:
- shellcheck -x --exclude=SC2034,SC1091 ./system/bin/*
- shellcheck -x ./system/.aliases
- shellcheck -x ./system/.bash_logout
- shellcheck -x ./system/.bash_profile
- shellcheck -x ./system/.bashrc
- shellcheck -x ./system/.env
- shellcheck -x ./system/.keyleds
- shellcheck -x ./system/.xinitrc
- shellcheck -x ./system/.xprofile
- shellcheck -x ./install.sh
- shellcheck -x ./post-install.sh