ClickHouse/.yamllint
Azat Khuzhin 3b4d5b00de Re-configure yamllint to allow document-start
CI reported [1]:

    1:1       warning  found forbidden document start "---"  (document-start)

  [1]: https://s3.amazonaws.com/clickhouse-test-reports/65563/27ef3066f685390227c84f31c7c95e1670f9960b/style_check.html

It was an error to forbid it, and it made only by mistake to ignore the
errors.

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2024-07-02 07:13:22 +02:00

17 lines
336 B
YAML

# vi: ft=yaml
extends: default
rules:
indentation:
level: warning
indent-sequences: consistent
line-length:
# there are:
# - bash -c "", so this is OK
# - yaml in tests
max: 1000
level: warning
comments:
min-spaces-from-content: 1
document-start: disable