Skip to content

Commit

Permalink
Ignore .ropeproject folder (it's a vim thing)
Browse files Browse the repository at this point in the history
  • Loading branch information
delfick committed Mar 16, 2015
1 parent f12d344 commit 54c7fea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ static/*
docs/ansible/creds/*
celerybeat-schedule
django.mo
.ropeproject
2 changes: 1 addition & 1 deletion pyflakes.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

find . -name '*.py' | egrep -v '^./static/' | egrep -v '^./lib/' | egrep -v '^./\w*/migrations/' | egrep -v './ratticweb/(local_)?settings.py' | xargs pyflakes
find . -name '*.py' | egrep -v '^./static/' | egrep -v '^./lib/' | egrep -v '^./\w*/migrations/' | egrep -v './ratticweb/(local_)?settings.py' | egrep -v '.ropeproject/' | xargs pyflakes
2 changes: 1 addition & 1 deletion runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function runtest() {
}

if (( $tests_only == 0 )); then
runtest "PEP8" "pep8 --exclude=migrations,lib,static --ignore=E501,E225,E128,E124 ."
runtest "PEP8" "pep8 --exclude=migrations,lib,static,.ropeproject --ignore=E501,E225,E128,E124 ."
runtest "pyflakes" "./pyflakes.sh"
fi

Expand Down

0 comments on commit 54c7fea

Please sign in to comment.