31 lines
No EOL
432 B
Text
31 lines
No EOL
432 B
Text
extends: default
|
|
|
|
rules:
|
|
# Line length
|
|
line-length:
|
|
max: 120
|
|
level: warning
|
|
|
|
# Document start
|
|
document-start: disable
|
|
|
|
# Trailing spaces
|
|
trailing-spaces: enable
|
|
|
|
# Truthy values
|
|
truthy:
|
|
check-keys: false
|
|
|
|
# Comments
|
|
comments:
|
|
min-spaces-from-content: 1
|
|
|
|
# Indentation
|
|
indentation:
|
|
spaces: 2
|
|
indent-sequences: true
|
|
|
|
# Empty lines
|
|
empty-lines:
|
|
max: 1
|
|
max-end: 1 |