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

@@ -4037,8 +4037,13 @@ struct Customer {
db := sqlite.connect('customers.db') ?
// you can create tables
// CREATE TABLE IF NOT EXISTS `Customer` (`id` INTEGER PRIMARY KEY, `name` TEXT NOT NULL, `nr_orders` INTEGER, `country` TEXT NOT NULL)
// you can create tables:
// CREATE TABLE IF NOT EXISTS `Customer` (
// `id` INTEGER PRIMARY KEY,
// `name` TEXT NOT NULL,
// `nr_orders` INTEGER,
// `country` TEXT NOT NULL
// )
sql db {
create table Customer
}