easybuild-easyconfigs
easybuild-easyconfigs copied to clipboard
Remove whitespace at EOL from ECs
First step of enabling flake8 for ECs.
Cmds run:
flake8 --filename '*.eb' --extend-ignore F821 -j4 --countto find and count issues excluding unknown variablesflake8 --filename '*.eb' --select W291 -j5to find only EOL whitespaceautopep8 -i --select W291 --max-line-length 120to fix only this issue, in particular:autopep8 -i --select W291 --max-line-length 120 $(flake8 --filename '*.eb' --select W291 -j5 --format='%(path)s' | sort -u)
Note that git diff develop --ignore-space-at-eol turns up empty except for the CI disabling
Rebased, conflicts resolved and updated so flake8 --filename '*.eb' --select W291 -j5 turns up nothing.
Rebased again, fixed newly introduced issues again.
Rebased to include removing recently introduced whitespace and resolve conflicts