Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.protolint.yaml « proto - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a53539c0b6a27fe0740401f35330d6f9f9fee1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
lint:
  rules:
    all_default: true
    remove:
      # We don't specify any line length limits.
      - MAX_LINE_LENGTH
      # We do not put comments in front of files. We already document services,
      # and only have a single service per file, so there is not much of a
      # point anyway.
      - FILE_HAS_COMMENT
      # Many of our fields and messages have prepositions in them, and
      # furthermore this rule doesn't feel all that sensible after all. We thus
      # disable it.
      - FIELD_NAMES_EXCLUDE_PREPOSITIONS
      - MESSAGE_NAMES_EXCLUDE_PREPOSITIONS