Skip to content

Pylint Profile

Jerry Zhou edited this page Jun 15, 2019 · 1 revision

If you are using "pylint", you may use the following settings to contribute to the biothings projects.

Profile

[BASIC]

# Good variable names which should always be accepted, separated by a comma.
good-names=s3

[FORMAT]

# Maximum number of characters on a single line.
max-line-length=90

Setup

Besides CLI usage, Pylint is supported as plugins for many editors.

Visual Studio Code

Add the following line to user or workspace setting:

"python.linting.enabled": true
"python.linting.pylintEnabled": true
"python.linting.pylintUseMinimalCheckers": false

Follow prompts to install "pylint" if it is not already set up.

Resources

Pylint Official Site
Pylint Settings for VSCode

Clone this wiki locally