1 example for pylint

{{ score }}
  # invoke pylint on mymodule
pylint mymodule.py

# if directory is a python package (has an __init__.py) or if "directory" is in the python path:
pylint directory/mymodule.py

# parallel execution
pylint -j 4 mymodule1.py mymodule2.py mymodule3.py mymodule4.py