diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-03-01 08:37:31 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-03-01 08:37:31 +0100 |
| commit | f56da0d98b2eda083c3b7b1606f804d76a001967 (patch) | |
| tree | 371e1e4538358b28d72f1a84cf3cb3adde5cbbab /test | |
| parent | 83063410148c8a5492d7225123cd3893dec3c448 (diff) | |
| download | dotfiles-f56da0d98b2eda083c3b7b1606f804d76a001967.tar.gz dotfiles-f56da0d98b2eda083c3b7b1606f804d76a001967.tar.bz2 dotfiles-f56da0d98b2eda083c3b7b1606f804d76a001967.zip | |
Updated rc command to source the program associated with a config file, Added yay config to use doas instead of sudo
Diffstat (limited to 'test')
| -rwxr-xr-x | test | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,8 +1,10 @@ #!/bin/sh +set -o xtrace + ret=0 -echo '-------------------- SHELLCHECK' +# SHELLCHECK shellcheck install || ret=$? shellcheck test || ret=$? shellcheck local/bin/* || ret=$? @@ -11,11 +13,12 @@ shellcheck -s sh config/zsh/aliases.zsh || ret=$? shellcheck -s sh -e SC2155 config/zsh/zprofile || ret=$? shellcheck -s sh config/x11/xinitrc || ret=$? -echo '-------------------- VINT' -vint -s config/vim/vimrc config/vim/pluggins.vim || ret=$? +# VINT +vint -s config/vim/vimrc || ret=$? +vint -s config/vim/pluggins.vim || ret=$? -echo '-------------------- FLAKE8' +# FLAKE8 flake8 --ignore F821,E501,W504,N816 config/qutebrowser/config.py || ret=$? -flake8 --ignore W504 config/python/startup.py || ret=$? +flake8 --ignore W504 config/python/startup.py || ret=$? exit $ret |
