diff options
author | James Laska <jlaska@ansible.com> | 2014-06-05 21:29:36 +0200 |
---|---|---|
committer | James Laska <jlaska@ansible.com> | 2014-06-05 21:29:36 +0200 |
commit | 11b39febfbd0b9ad043baade213244c0c5ce372b (patch) | |
tree | c09f7edc4e22a13061c0b1e3ebf1bf8ce4a5cd42 | |
parent | Rename awx/settings/jenkins to awx/settings/development_quiet (diff) | |
download | awx-11b39febfbd0b9ad043baade213244c0c5ce372b.tar.xz awx-11b39febfbd0b9ad043baade213244c0c5ce372b.zip |
Include PYLINT_RCFILE
-rw-r--r-- | awx/settings/development.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/awx/settings/development.py b/awx/settings/development.py index fbdb3099bc..43fe6c1d74 100644 --- a/awx/settings/development.py +++ b/awx/settings/development.py @@ -42,6 +42,7 @@ if 'django_jenkins' in INSTALLED_APPS: 'django_jenkins.tasks.run_csslint', ) PEP8_RCFILE = "setup.cfg" + PYLINT_RCFILE = ".pylintrc" CSSLINT_CHECKED_FILES = glob.glob(os.path.join(BASE_DIR, 'ui/static/less/*.less')) JSHINT_CHECKED_FILES = [os.path.join(BASE_DIR, 'ui/static/js'), os.path.join(BASE_DIR, 'ui/static/lib/ansible'),] |