Forrest logo
back to context overview

pylint

List of commands for pylint:

  • pylint:tldr:46105 pylint: Show lint errors in a file.
    $ pylint ${filename-py}
    try on your machine
    explain this command
  • pylint:tldr:897a6 pylint: Lint a file and disable a specific error code.
    $ pylint --disable ${C,W,no-error,design} ${filename}
    try on your machine
    explain this command
  • pylint:tldr:8a80f pylint: Lint a file and use a configuration file (usually named `pylintrc`).
    $ pylint --rcfile ${path-to-pylintrc} ${filename-py}
    try on your machine
    explain this command
back to context overview