Increase line-length limit for yamlllint

CI reports [1]:

  /ClickHouse/tests/queries/0_stateless/data_ua_parser/browser.yaml
    713:301   warning  line too long (328 > 300 characters)  (line-length)

  /ClickHouse/tests/queries/0_stateless/data_ua_parser/device.yaml
    2606:301  warning  line too long (529 > 300 characters)  (line-length)
    2616:301  warning  line too long (348 > 300 characters)  (line-length)
    2630:301  warning  line too long (377 > 300 characters)  (line-length)
    2637:301  warning  line too long (447 > 300 characters)  (line-length)

  [1]: https://s3.amazonaws.com/clickhouse-test-reports/50934/be4555c3226298d956ff650fab477d67bf73ba83/style_check/style_output.txt

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
This commit is contained in:
Azat Khuzhin 2023-06-13 16:48:28 +02:00
parent dc6810601a
commit 35825bc7d6

View File

@ -6,8 +6,10 @@ rules:
level: warning
indent-sequences: consistent
line-length:
# there are some bash -c "", so this is OK
max: 300
# there are:
# - bash -c "", so this is OK
# - yaml in tests
max: 1000
level: warning
comments:
min-spaces-from-content: 1