Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
0f51a397
Commit
0f51a397
authored
7 years ago
by
Jeremy Bowman
Browse files
Options
Downloads
Patches
Plain Diff
Exclude .tox directory from quality checks
parent
b964b528
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pylintrc
+2
-2
2 additions, 2 deletions
pylintrc
pylintrc_tweaks
+1
-1
1 addition, 1 deletion
pylintrc_tweaks
setup.cfg
+1
-1
1 addition, 1 deletion
setup.cfg
with
4 additions
and
4 deletions
pylintrc
+
2
−
2
View file @
0f51a397
...
@@ -53,7 +53,7 @@
...
@@ -53,7 +53,7 @@
#
#
# ------------------------------
# ------------------------------
[MASTER]
[MASTER]
ignore = ,.git,migrations,node_modules,.pycharm_helpers
ignore = ,.git,
.tox,
migrations,node_modules,.pycharm_helpers
persistent = yes
persistent = yes
load-plugins = edx_lint.pylint,pylint_django,pylint_celery
load-plugins = edx_lint.pylint,pylint_django,pylint_celery
...
@@ -180,4 +180,4 @@ int-import-graph =
...
@@ -180,4 +180,4 @@ int-import-graph =
[EXCEPTIONS]
[EXCEPTIONS]
overgeneral-exceptions = Exception
overgeneral-exceptions = Exception
#
42ec1461de97fc01d7191c1c5f2fd5ec67671a61
#
5c46ef5d76dd14aadf0311325da7f519a2241646
This diff is collapsed.
Click to expand it.
pylintrc_tweaks
+
1
−
1
View file @
0f51a397
# pylintrc tweaks for use with edx_lint.
# pylintrc tweaks for use with edx_lint.
[MASTER]
[MASTER]
ignore+ = ,.git,migrations,node_modules,.pycharm_helpers
ignore+ = ,.git,
.tox,
migrations,node_modules,.pycharm_helpers
[BASIC]
[BASIC]
attr-rgx = [a-z_][a-z0-9_]{2,40}$
attr-rgx = [a-z_][a-z0-9_]{2,40}$
...
...
This diff is collapsed.
Click to expand it.
setup.cfg
+
1
−
1
View file @
0f51a397
...
@@ -35,7 +35,7 @@ python_files = tests.py test_*.py tests_*.py *_tests.py __init__.py
...
@@ -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
# It's
a little unusual, but we have good reasons for doing so, so we disable
# this
rule.
# this
rule.
ignore=E501,E265,W602
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]
[isort]
indent='
'
indent='
'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment