-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(generic): simple run & only root directory checking by default
- Loading branch information
Showing
4 changed files
with
73 additions
and
19 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
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
This means no directories with spaces are allowed? I know it's bad practice, but it's not impossible.
validate-ddf ../ddf-example --exclude-dirs "etl foo-dir"
should validate "ddf-example" and its subdirectories except "etl foo-dir"I'm not sure what is the common way to then add multiple dirs to exclude? Repeat
--exclude-dirs
or space-separated (but outside quotes)?validate-ddf ../ddf-example --exclude-dirs etl --exclude-dirs "second dir"
validate-ddf ../ddf-example --exclude-dirs etl "second dir"