
pyflakes
List of commands for pyflakes:
-
pyflakes:tldr:02bce pyflakes: Check Python files in a specific directory.$ pyflakes checkPath ${path-to-directory}try on your machineexplain this command
-
pyflakes:tldr:356da pyflakes: Check Python files in a directory recursively.$ pyflakes checkRecursive ${path-to-directory}try on your machineexplain this command
-
pyflakes:tldr:40134 pyflakes: Check a single Python file.$ pyflakes check ${filename}.pytry on your machineexplain this command
-
pyflakes:tldr:c73c7 pyflakes: Check all Python files found in multiple directories.$ pyflakes iterSourceCode ${path-to-directory_1} ${path-to-directory_2}try on your machineexplain this command