Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
43fe9f06
Commit
43fe9f06
authored
Oct 27, 2017
by
Jeremy Bowman
Committed by
GitHub
Oct 27, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #16362 from edx/jmbowman/PLAT-1598
Exclude .tox directory from quality checks
parents
7bbecfdc
0f51a397
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
pylintrc
+2
-2
pylintrc_tweaks
+1
-1
setup.cfg
+1
-1
No files found.
pylintrc
View file @
43fe9f06
...
...
@@ -53,7 +53,7 @@
#
# ------------------------------
[MASTER]
ignore = ,.git,migrations,node_modules,.pycharm_helpers
ignore = ,.git,
.tox,
migrations,node_modules,.pycharm_helpers
persistent = yes
load-plugins = edx_lint.pylint,pylint_django,pylint_celery
...
...
@@ -180,4 +180,4 @@ int-import-graph =
[EXCEPTIONS]
overgeneral-exceptions = Exception
#
42ec1461de97fc01d7191c1c5f2fd5ec67671a61
#
5c46ef5d76dd14aadf0311325da7f519a2241646
pylintrc_tweaks
View file @
43fe9f06
# pylintrc tweaks for use with edx_lint.
[MASTER]
ignore+ = ,.git,migrations,node_modules,.pycharm_helpers
ignore+ = ,.git,
.tox,
migrations,node_modules,.pycharm_helpers
[BASIC]
attr-rgx = [a-z_][a-z0-9_]{2,40}$
...
...
setup.cfg
View file @
43fe9f06
...
...
@@ -35,7 +35,7 @@ python_files = tests.py test_*.py tests_*.py *_tests.py __init__.py
# It's a little unusual, but we have good reasons for doing so, so we disable
# this rule.
ignore=E501,E265,W602
exclude=migrations,.git,.pycharm_helpers,test_root/staticfiles,node_modules
exclude=migrations,.git,.pycharm_helpers,
.tox,
test_root/staticfiles,node_modules
[isort]
indent=' '
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment