Skip to content

Commit

Permalink
Pylint config changes.
Browse files Browse the repository at this point in the history
Details:
- Set number of parallel pylint jobs to 4 for speedup.
- Disabled full pylint report because it added large amounts of
  source code.
  • Loading branch information
andy-maier committed Apr 24, 2017
1 parent b777bb8 commit 583bee0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ persistent=yes
load-plugins=

# Use multiple processes to speed up Pylint.
jobs=1
jobs=4

# Allow loading of arbitrary C extensions. Extensions are imported into the
# active Python interpreter and may run arbitrary code.
Expand Down Expand Up @@ -97,7 +97,7 @@ output-format=text
files-output=no

# Tells whether to display a full report or only the messages
reports=yes
reports=no

# Python expression which should return a note less than 10 (10 is the highest
# note). You have access to the variables errors warning, statement which
Expand Down

0 comments on commit 583bee0

Please sign in to comment.