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

fmt: split infix wrapping into smaller functions and fix a trailing space bug (#9806)

* change recursive fn calls to reduce write operations

* format files and test

* Update vtest-cleancode.v

* fix test
This commit is contained in:
Lukas Neubert
2021-04-19 20:56:39 +02:00
committed by GitHub
parent c174bfa52f
commit 4a1f75c964
5 changed files with 71 additions and 45 deletions

View File

@ -5,9 +5,7 @@ import testing
import v.util
const (
vet_known_failing_exceptions = [
'vlib/v/gen/js/js.v' /* trailing space */,
]
vet_known_failing_exceptions = []string{}
vet_folders = [
'vlib/sqlite',
'vlib/v',