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

checker: bump iface_level_cutoff_limit to 100 (fix ci)

This commit is contained in:
Delyan Angelov 2022-02-17 11:46:04 +02:00
parent 230dc26858
commit 245b70cabc
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -22,7 +22,7 @@ const expr_level_cutoff_limit = 40
const stmt_level_cutoff_limit = 40
const iface_level_cutoff_limit = 99
const iface_level_cutoff_limit = 100
const (
valid_comptime_if_os = ['windows', 'ios', 'macos', 'mach', 'darwin', 'hpux', 'gnu',