-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add globbing to codestyle_exclude (#43)
Sometimes a specific directory might include files that follow different style conventions (e.g., code generated using grpc) - before this change, any such files would need to be excluded individually. This commit makes specifying excluded files more flexible by allowing globbing in file paths. codestyle_exclude will now accept paths like `embedded_lib/**/*.py`, which will match any file in any subdirectory of `embedded_lib` that has a `.py` extension. Close #42
- Loading branch information
Showing
2 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters