github.com/ianlewis/go-gitignore@v0.1.1-0.20231110021210-4a0f15cbd56f/.markdownlint.yaml (about)

     1  # Copyright 2023 Google LLC
     2  #
     3  # Licensed under the Apache License, Version 2.0 (the "License");
     4  # you may not use this file except in compliance with the License.
     5  # You may obtain a copy of the License at
     6  #
     7  #      http://www.apache.org/licenses/LICENSE-2.0
     8  #
     9  # Unless required by applicable law or agreed to in writing, software
    10  # distributed under the License is distributed on an "AS IS" BASIS,
    11  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  # See the License for the specific language governing permissions and
    13  # limitations under the License.
    14  
    15  # MD004/ul-style - Unordered list style
    16  MD004:
    17    style: "dash"
    18  
    19  # MD007/ul-indent - Unordered list indentation
    20  MD007:
    21    indent: 2
    22  
    23  # MD013/line-length - Line length
    24  MD013: false
    25  
    26  # MD025/single-title/single-h1 - Multiple top-level headings
    27  MD025:
    28    # Disable checking of YAML frontmatter.
    29    front_matter_title: ""
    30  
    31  # MD028/no-blanks-blockquote - Blank line inside blockquote
    32  MD028: false
    33  
    34  # MD029/ol-prefix - Ordered list item prefix
    35  MD029:
    36    # List style
    37    style: "ordered"
    38  
    39  # MD030/list-marker-space - Spaces after list markers
    40  MD030:
    41    # Spaces for single-line unordered list items
    42    ul_single: 1
    43    # Spaces for single-line ordered list items
    44    ol_single: 1
    45    # Spaces for multi-line unordered list items
    46    ul_multi: 1
    47    # Spaces for multi-line ordered list items
    48    ol_multi: 1
    49  
    50  # MD033/no-inline-html - Inline HTML
    51  MD033: false
    52  
    53  # MD034/no-bare-urls - Bare URL used
    54  MD034: false
    55  
    56  # MD046/code-block-style - Code block style
    57  MD046:
    58    style: "fenced"
    59  
    60  # MD047/single-trailing-newline - Files should end with a single newline character
    61  MD047: true
    62  
    63  # MD048/code-fence-style - Code fence style
    64  MD048:
    65    style: "backtick"
    66  
    67  # Disable checks that currently have bugs:
    68  MD051: false # https://github.com/DavidAnson/markdownlint/issues/538
    69  MD053: false # https://github.com/DavidAnson/markdownlint/issues/537