-
Notifications
You must be signed in to change notification settings - Fork 25
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.
[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
Besides CLI usage, Pylint is supported as plugins for many editors.
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.