Supply directory names at command line to search
See original GitHub issueRelated Python linting tools like pep8
, flake8
and pydocstyle
will accept a mixture of filenames and directory names (e.g. .
, Tests
or Tests/
). When a directory is given, they appear to recurse under it and lint any matching files (here presumably using *.py
).
I would like to be able to run commands like rst-lint *.rst Scripts/ Tests/
or just rsl-lint .
and have it recurse under the given directories to find *.rst
files. This pattern might be set by a new optional argument.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Find a Directory/Folder with CMD without knowing full path
I don't know the full path to a folder, just the folder name. I would like to find everywhere where this folder is...
Read more >Find Files in Linux Using the Command Line | Linode
You can use the find command to search for a file or directory on ... Use find from the command line to locate...
Read more >Linux / UNIX List Just Directories Or Directory Names - nixCraft
The grep command is used to searches input. It will filter out directories name by matching first character ' d '. To reverse...
Read more >Use the Unix find command to search for files - IU KB
Use the Unix find command to search for files. To use the find command, at the Unix prompt, enter: find . -name "pattern"...
Read more >dir | Microsoft Learn
This command lists only the drive letter, directory name, file name, and file name extension (one path per line), for each file name...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Support for this has been added in
1.2.0
via @dhruvsomani in #48flake8
doesn’t support wildcard expansion. Here’s some example commands to verify that: