1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v check-md: reduce false positives for too long lines in various cases (real problems are easier to spot now)

This commit is contained in:
Delyan Angelov
2021-08-16 10:11:44 +03:00
parent e28dc0489d
commit 46ede3fb98
3 changed files with 33 additions and 17 deletions

View File

@@ -56,7 +56,8 @@ term.fail_message('oh, no')
term.warning_message('be warned')
// clears the entire terminal and leaves a blank one
term.clear()
// colors the output of the output, the available colors are: black,blue,yellow,green,cyan,gray,bright_blue,bright_green,bright_red,bright_black,bright_cyan
// colors the output of the output, the available colors are:
// black,blue,yellow,green,cyan,gray,bright_blue,bright_green,bright_red,bright_black,bright_cyan
term.yellow('submarine')
// transforms the given string into bold text
term.bold('and beautiful')