brintos

brintos / linux-shallow public Read only

0
0
Text · 1.0 KiB · fea5231 Raw
45 lines · plain
1extends: relaxed2 3rules:4  quoted-strings:5    required: only-when-needed6    extra-allowed:7      - '[$^,[]'8      - '^/$'9  line-length:10    # 80 chars should be enough, but don't fail if a line is longer11    max: 11012    allow-non-breakable-words: true13    level: warning14  braces:15    min-spaces-inside: 016    max-spaces-inside: 117    min-spaces-inside-empty: 018    max-spaces-inside-empty: 019  brackets:20    min-spaces-inside: 021    max-spaces-inside: 122    min-spaces-inside-empty: 023    max-spaces-inside-empty: 024  colons: {max-spaces-before: 0, max-spaces-after: 1}25  commas: {min-spaces-after: 1, max-spaces-after: 1}26  comments:27    require-starting-space: true28    min-spaces-from-content: 129  comments-indentation: disable30  document-start:31    present: true32  empty-lines:33    max: 334    max-end: 135  empty-values:36    forbid-in-block-mappings: true37    forbid-in-flow-mappings: true38  hyphens:39    max-spaces-after: 140  indentation:41    spaces: 242    indent-sequences: true43    check-multi-line-strings: false44  trailing-spaces: false45