We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi! In my project, I expect ApiProperty#Summary and ApiProperty#Description to start with an upper-cased letter.
ApiProperty#Summary
ApiProperty#Description
PASSES:
@ApiOperation({ summary: "Clears the access-token cookie", // <<<<<<------------------------- c (upper case) }) @Post("logout") postLogout(@Res() res: Response) { // ... }
FAILES:
@ApiOperation({ summary: "clears the access-token cookie", // <<<<<<------------------------- C (lower case) }) @Post("logout") postLogout(@Res() res: Response) { // ... }
The text was updated successfully, but these errors were encountered:
this could be a good first rule for someone! isUpper() or regex is a pretty easy check
Sorry, something went wrong.
No branches or pull requests
Hi! In my project, I expect
ApiProperty#Summary
andApiProperty#Description
to start with an upper-cased letter.Example:
PASSES:
FAILES:
The text was updated successfully, but these errors were encountered: