Commit 7586ec37 authored by Federico Falconieri's avatar Federico Falconieri
Browse files

Merge branch 'yamllint' into 'master'

style: disable line check globally

See merge request ci/templates!44
parents 4d019c6c bda12fab
Loading
Loading
Loading
Loading

.yamllint.yml

0 → 100644
+5 −0
Original line number Diff line number Diff line
---
extends: default

rules:
  line-length: disable
+0 −2
Original line number Diff line number Diff line
@@ -2,8 +2,6 @@
# https://github.com/semantic-release/semantic-release#commit-message-format
# https://levelup.gitconnected.com/semantic-versioning-and-release-automation-on-gitlab-9ba16af0c21

# yamllint disable rule:line-length

variables:
  BADGE_semantic_release: "version-${CI_COMMIT_TAG}-informational"
  BADGE_semantic_release_URL: "${CI_PROJECT_URL}/tags/${CI_COMMIT_TAG}"
+0 −2
Original line number Diff line number Diff line
---
# yamllint disable rule:line-length

c:cppcheck:
  stage: test
  image: registry.gitlab.com/notno/test/c:latest
+1 −1
Original line number Diff line number Diff line
@@ -9,5 +9,5 @@ c:flawfinder:
    EXTRA_ARGS: ""
    CHECK_PATH: "."  # Can be a file
  script:
    - flawfinder ${DEFAULT_ARGS} ${EXTRA_ARGS} --minlevel ${MIN_LEVEL} --error-level=${ERROR_LEVEL} ${CHECK_PATH}  # yamllint disable-line rule:line-length
    - flawfinder ${DEFAULT_ARGS} ${EXTRA_ARGS} --minlevel ${MIN_LEVEL} --error-level=${ERROR_LEVEL} ${CHECK_PATH}
  needs: []
+0 −2
Original line number Diff line number Diff line
@@ -2,8 +2,6 @@
# a vulnerability scanner for container images and filesystems
# https://github.com/anchore/grype

# yamllint disable rule:line-length

docker:anchore:grype:
  image: registry.gitlab.com/notno/grype
  variables:
Loading