tools: bump too_long_line_length_link to 250, to avoid warnings for very common long links

This commit is contained in:
Delyan Angelov 2024-01-14 18:23:58 +02:00
parent 70b93935be
commit 2f58ac3866
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
2 changed files with 7 additions and 2 deletions

View file

@ -4,7 +4,12 @@
</p> </p>
<h1>The V Programming Language</h1> <h1>The V Programming Language</h1>
[vlang.io](https://vlang.io) | [Docs](https://github.com/vlang/v/blob/master/doc/docs.md) | [Changelog](https://github.com/vlang/v/blob/master/CHANGELOG.md) | [Speed](https://fast.vlang.io/) | [Contributing & compiler design](https://github.com/vlang/v/blob/master/CONTRIBUTING.md) [vlang.io](https://vlang.io)
| [Docs](https://github.com/vlang/v/blob/master/doc/docs.md)
| [Changelog](https://github.com/vlang/v/blob/master/CHANGELOG.md)
| [Speed](https://fast.vlang.io/)
| [Contributing & compiler design](https://github.com/vlang/v/blob/master/CONTRIBUTING.md)
</div> </div>
<div align="center" style="display:grid;place-items:center;"> <div align="center" style="display:grid;place-items:center;">
<!-- <!--

View file

@ -13,7 +13,7 @@ import regex
const too_long_line_length_example = 120 const too_long_line_length_example = 120
const too_long_line_length_codeblock = 120 const too_long_line_length_codeblock = 120
const too_long_line_length_table = 160 const too_long_line_length_table = 160
const too_long_line_length_link = 150 const too_long_line_length_link = 250
const too_long_line_length_other = 100 const too_long_line_length_other = 100
const term_colors = term.can_show_color_on_stderr() const term_colors = term.can_show_color_on_stderr()
const hide_warnings = '-hide-warnings' in os.args || '-w' in os.args const hide_warnings = '-hide-warnings' in os.args || '-w' in os.args