Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 7月 24, 2024
  2. 5月 30, 2024
  3. 5月 30, 2023
  4. 4月 25, 2023
  5. 12月 15, 2022
    • Peter Leitzen's avatar
      yamllint: Lint more YAML extensions · 28c25351
      Peter Leitzen 创作于
      Match YAML files with any ending and exclude extension which are known
      to break yamllint. For example, *.erb, *.gz, *.bz2.
      
      The following files are checked additionally:
      - ./config/secrets.yml.example
      - ./config/database.yml.postgresql
      - ./config/resque.yml.example
      - ./config/cable.yml.example
      - ./config/gitlab.yml.example
      - ./config/database.yml.decomposed-postgresql
      - ./config/sidekiq.yml.example
      - ./.solargraph.yml.example
      28c25351
    • Peter Leitzen's avatar
      yamllint: Enable and configure `braces` rule · 43efc2f2
      Peter Leitzen 创作于
      Enforce braces to be used with a single space inside. Empty braces don't
      have a space:
      
        good: { this_is: ok }
        empty: {} #  Also OK
      
        bad: {this_is: too_little}
        also_bad: {  this_is: too_much  }
        empty: { } #  # Also bad
      43efc2f2
  6. 5月 30, 2022
  7. 6月 06, 2019
    • Kamil Trzciński's avatar
      Add yaml lint · d2cc841c
      Kamil Trzciński 创作于
      This commit adds CI job that validates all `*.yml`
      with `yamllint`.
      
      This commit fixes all offenses present in repository.
      d2cc841c
  8. 6月 05, 2019
    • Will Hall's avatar
      Add yaml lint · 4ce7cd70
      Will Hall 创作于
      This commit adds CI job that validates all `*.yml`
      with `yamllint`.
      
      This commit fixes all offenses present in repository.
      4ce7cd70
加载中