Skip to content

Commit

Permalink
cleaner bash
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Feb 16, 2024
1 parent b843b5e commit ca7e2a3
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions pylint.bash
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,16 @@
# requires the spelling dicts
# sudo apt-get -o Dpkg::Use-Pty=0 install --fix-missing enchant-2 hunspell hunspell-en-gb

pylint --output-format=colorized --disable=R --persistent=no --jobs=1 --rcfile=../SupportScripts/actions/pylint/strict_rcfile --spelling-dict=en_GB --spelling-private-dict-file="../SupportScripts/actions/pylint/default_dict.txt" --disable=import-error spinnman

rcfile="--rcfile=../SupportScripts/actions/pylint/strict_rcfile"
dict="--spelling-private-dict-file=../SupportScripts/actions/pylint/default_dict.txt"
params="--output-format=colorized --disable=R --persistent=no --jobs=1 --spelling-dict=en_GB"
check=
# one test
# pylint --enable=wrong-import-order --output-format=colorized --disable=R --persistent=no --jobs=1 --rcfile=../SupportScripts/actions/pylint/strict_rcfile --spelling-dict=en_GB --spelling-private-dict-file="../SupportScripts/actions/pylint/default_dict.txt" --disable=all spinnman

# check="--enable=wrong-import-order --disable=all"
# check docs
# pylint --enable=missing-function-docstring,missing-class-docstring,invalid-characters-in-docstring,wrong-spelling-in-comment,wrong-spelling-in-docstring --output-format=colorized --disable=R --persistent=no --jobs=1 --rcfile=../SupportScripts/actions/pylint/strict_rcfile --spelling-dict=en_GB --spelling-private-dict-file="../SupportScripts/actions/pylint/default_dict.txt" --disable=all spinnman
check="--enable=missing-function-docstring,missing-class-docstring,invalid-characters-in-docstring,wrong-spelling-in-comment,wrong-spelling-in-docstring --disable=all"

pylint $check $rcfile $dict $params spinnman



0 comments on commit ca7e2a3

Please sign in to comment.