mirror of https://github.com/interlegis/sigi.git
Eduardo Edson Batista Cordeiro Alves
9 years ago
committed by
Luciano Almeida
100 changed files with 424 additions and 315 deletions
@ -0,0 +1,17 @@ |
|||
#!/bin/bash |
|||
|
|||
# Check if there's some debug breakpoint in codebase |
|||
me=`basename "$0"` |
|||
stmts=`grep --exclude=$me -r -l "ipdb.set_trace()" * | wc -l` |
|||
if [ $stmts != '0' ] |
|||
then |
|||
echo "==================================================================" |
|||
echo "ERROR: ipdb.set_trace() call in codebase! Remove, please." |
|||
grep --exclude=$me -r -n "ipdb.set_trace()" * |
|||
echo "==================================================================" |
|||
fi |
|||
|
|||
# QA checks: run this before every commit |
|||
./manage.py check |
|||
flake8 --exclude='ipython_log.py*,migrations,templates' . |
|||
isort --recursive --check-only --skip='migrations' --skip='templates' --skip='ipython_log.py' . |
@ -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' . |
Loading…
Reference in new issue