mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
tools: bump too_long_line_length_link to 250, to avoid warnings for very common long links
This commit is contained in:
parent
70b93935be
commit
2f58ac3866
2 changed files with 7 additions and 2 deletions
|
@ -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;">
|
||||||
<!--
|
<!--
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue