github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/validconfig/protolint.yaml (about)

     1  ---
     2  lint:
     3    ignores:
     4      - id: ENUM_FIELD_NAMES_UPPER_SNAKE_CASE
     5        files:
     6          - path/to/foo.proto
     7          - path/to/bar.proto
     8      - id: ENUM_NAMES_UPPER_CAMEL_CASE
     9        files:
    10          - path/to/foo.proto
    11  
    12    rules:
    13      no_default: true
    14  
    15      add:
    16        - FIELD_NAMES_LOWER_SNAKE_CASE
    17        - MESSAGE_NAMES_UPPER_CAMEL_CASE
    18  
    19      remove:
    20        - RPC_NAMES_UPPER_CAMEL_CASE
    21  
    22    rules_option:
    23      max_line_length:
    24        max_chars: 80
    25        tab_chars: 2
    26  
    27      indent:
    28        style: tab
    29        newline: "\n"