diff --git a/qa_check.sh b/check_qa.sh similarity index 57% rename from qa_check.sh rename to check_qa.sh index 8cdd35116..75f124bda 100755 --- a/qa_check.sh +++ b/check_qa.sh @@ -4,4 +4,4 @@ ./manage.py check flake8 --exclude='ipython_log.py*,migrations,templates' . -isort --check-only --skip='migrations' --skip='templates' --skip='ipython_log.py' -rc . +isort --recursive --check-only --skip='migrations' --skip='templates' --skip='ipython_log.py' . diff --git a/fix_qa.sh b/fix_qa.sh new file mode 100755 index 000000000..a3ac9d843 --- /dev/null +++ b/fix_qa.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# QA fix: Use ese script para corrigir automaticamente vários +# problemas de estilo e boas práticas no código. +# +# Sempre guarde suas mudanças de alguma forma antes de aplicar esse script, +# de modo que possa revisar cada alteração que ele fez. +# Uma forma simples de fazer isso é adicionando antes suas mudanças à +# "staging area" do git, com `git add .` e após usar o script `git diff`. + +isort --recursive --skip='migrations' --skip='templates' --skip='ipython_log.py' . diff --git a/test_and_qa_check.sh b/test_and_check_qa.sh similarity index 100% rename from test_and_qa_check.sh rename to test_and_check_qa.sh