-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tsv path requirement check #24971
tsv path requirement check #24971
Conversation
Swagger Validation Report
|
Hi, @ckairen! Thank you for your pull request. To help get your PR merged: Generated ApiView comment added to this PR. You can use ApiView to show API versions diff. |
Swagger Generation Artifacts
|
Swagger pipeline restarted successfully. If there is ApiView generated, it will be updated in this comment. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if this addresses all the concerns in the issue. It ensures the last word after the dot is capitalized, but what if there is no dot in the folder name? What if the folder is named something like Foo.Bar
where Bar
is not a valid suffix?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please delay this PR until #24983 is addressed.
"Please rename the folder " + | ||
leafDir + | ||
" to " + | ||
leafDir.replace(/\.\w/g, (l) => l.toUpperCase()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Won't this also cause any other of the same letters to be upper cased in the path?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@weshaggard: I converted this PR back to draft. It will have significant changes before merging.
combining with #25712 |
closes #24984