2020-05-13 18:05:13 +00:00
|
|
|
---
|
|
|
|
#
|
|
|
|
# doc https://yamllint.readthedocs.io/en/stable/
|
|
|
|
#
|
|
|
|
# run in local (linux)
|
|
|
|
# install => sudo python3 -m pip install yamllint
|
|
|
|
# run => yamllint -s -c ./yamllint.yml ./src/Jackett.Common/Definitions/
|
|
|
|
#
|
|
|
|
extends: default
|
|
|
|
|
|
|
|
rules:
|
2022-08-15 18:08:53 +00:00
|
|
|
comments:
|
|
|
|
min-spaces-from-content: 1
|
|
|
|
comments-indentation: disable
|
2020-05-13 18:05:13 +00:00
|
|
|
document-start:
|
|
|
|
level: error
|
2022-08-15 18:08:53 +00:00
|
|
|
empty-lines:
|
|
|
|
max: 1
|
|
|
|
empty-values: enable
|
|
|
|
indentation:
|
|
|
|
spaces: 2
|
2020-05-13 18:05:13 +00:00
|
|
|
line-length: disable
|
2022-07-29 04:30:02 +00:00
|
|
|
new-lines:
|
|
|
|
type: platform
|
2022-08-15 18:08:53 +00:00
|
|
|
truthy: disable
|