Skip to content

Commit 8b2d769

Browse files
fix: update YAML linting configuration for improved readability and consistency
1 parent 0f90603 commit 8b2d769

10 files changed

Lines changed: 19 additions & 10 deletions

.github/workflows/cgl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
- name: Install yamllint
1414
run: sudo apt-get update && sudo apt-get install -y yamllint
1515
- name: Lint YAML files
16-
run: yamllint .
16+
run: yamllint -d relaxed .

analyze/analyze-composer-lint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ analyze:composer:lint:
88
image:
99
name: ${DEFAULT_IMAGE_BUILD_COMPOSER}
1010
stage: analyze
11-
needs: [ "build:php" ]
11+
needs:
12+
- build:php
1213
script:
1314
- composer run lint:composer:normalize
1415
rules:

analyze/analyze-editorconfig.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ analyze:editorconfig:
88
image:
99
name: ${DEFAULT_IMAGE_BUILD_COMPOSER}
1010
stage: analyze
11-
needs: [ "build:php" ]
11+
needs:
12+
- build:php
1213
script:
1314
- composer run lint:editorconfig
1415
rules:

analyze/analyze-php-cs-fixer.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ analyze:php:cs-fixer:
88
image:
99
name: ${DEFAULT_IMAGE_BUILD_COMPOSER}
1010
stage: analyze
11-
needs: [ "build:php" ]
11+
needs:
12+
- build:php
1213
script:
1314
- composer run lint:php:cs-fixer
1415
rules:

analyze/analyze-php-rector.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ analyze:php:stan:
88
image:
99
name: ${DEFAULT_IMAGE_BUILD_COMPOSER}
1010
stage: analyze
11-
needs: [ "build:php" ]
11+
needs:
12+
- build:php
1213
script:
1314
- composer run lint:php:rector
1415
rules:

analyze/analyze-php-stan.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ analyze:php:stan:
88
image:
99
name: ${DEFAULT_IMAGE_BUILD_COMPOSER}
1010
stage: analyze
11-
needs: [ "build:php" ]
11+
needs:
12+
- build:php
1213
script:
1314
- composer run lint:php:stan
1415
rules:

analyze/analyze-php.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ analyze:php:
88
image:
99
name: ${DEFAULT_IMAGE_BUILD_COMPOSER}
1010
stage: analyze
11-
needs: [ "build:php" ]
11+
needs:
12+
- build:php
1213
script:
1314
- composer run lint:php
1415
rules:

analyze/analyze-typoscript-lint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ analyze:typoscript:lint:
88
image:
99
name: ${DEFAULT_IMAGE_BUILD_COMPOSER}
1010
stage: analyze
11-
needs: [ "build:php" ]
11+
needs:
12+
- build:php
1213
script:
1314
- composer run lint:typoscript
1415
rules:

analyze/analyze-xml-lint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ analyze:xml:lint:
88
image:
99
name: ${DEFAULT_IMAGE_BUILD_COMPOSER}
1010
stage: analyze
11-
needs: [ "build:php" ]
11+
needs:
12+
- build:php
1213
script:
1314
- apt-get update -qq && apt-get install libxml2-utils -qq
1415
- composer run lint:xml

analyze/analyze-yaml-lint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ analyze:xml:lint:
88
image:
99
name: ${DEFAULT_IMAGE_BUILD_COMPOSER}
1010
stage: analyze
11-
needs: [ "build:php" ]
11+
needs:
12+
- build:php
1213
script:
1314
- composer run lint:yaml
1415
rules:

0 commit comments

Comments
 (0)