From c197f90e45f2f9d141deaf682808b68b2900838d Mon Sep 17 00:00:00 2001 From: James Laska Date: Fri, 10 Apr 2015 09:54:41 -0400 Subject: [PATCH] Comment out jshint+csslint from django_jenkins --- awx/settings/development.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/awx/settings/development.py b/awx/settings/development.py index 75922c0081..77e5156c4c 100644 --- a/awx/settings/development.py +++ b/awx/settings/development.py @@ -43,8 +43,9 @@ if 'django_jenkins' in INSTALLED_APPS: # The following are not needed when including run_flake8 # 'django_jenkins.tasks.run_pep8', # 'django_jenkins.tasks.run_pyflakes', - 'django_jenkins.tasks.run_jshint', - 'django_jenkins.tasks.run_csslint', + # The following are handled by various grunt tasks and no longer required + # 'django_jenkins.tasks.run_jshint', + # 'django_jenkins.tasks.run_csslint', ) PEP8_RCFILE = "setup.cfg" PYLINT_RCFILE = ".pylintrc"