Run more comprehensive prospector checks

Signed-off-by: Aleksi Häkli <aleksi.hakli@iki.fi>
This commit is contained in:
Aleksi Häkli 2019-02-12 23:33:18 +02:00
parent 40a0eae647
commit df83adb059
No known key found for this signature in database
GPG key ID: 3E7146964D726BBE
2 changed files with 1 additions and 12 deletions

View file

@ -5,14 +5,3 @@ ignore-paths:
pep8:
options:
max-line-length: 119
pyflakes:
disable:
- F401
pylint:
disable:
- old-style-class
dodgy:
run: false

View file

@ -17,7 +17,7 @@ class MyAppConf(AppConf):
USERNAME_FORM_FIELD = 'username'
# use a specific password field to retrieve from login POST data
PASSWORD_FORM_FIELD = 'password'
PASSWORD_FORM_FIELD = 'password' # noqa
# use a provided callable to transform the POSTed username into the one used in credentials
USERNAME_CALLABLE = None