From f417c6b0a1d6fcebcdf337e4534aa60d353c8883 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Fri, 12 Dec 2025 02:59:45 +1000 Subject: [PATCH] yamllint use `extends: default` (#12066) --- .github/linters/.yamllint.yml | 3 ++- tools/docker/docker-compose.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/linters/.yamllint.yml b/.github/linters/.yamllint.yml index 8a72aee0adb..97b66848696 100644 --- a/.github/linters/.yamllint.yml +++ b/.github/linters/.yamllint.yml @@ -15,13 +15,14 @@ # specific language governing permissions and limitations # under the License. --- -extends: relaxed +extends: default rules: line-length: max: 400 # Very forgiving for GitHub Actions and infrastructure files indentation: disable # Disable indentation checking for existing files comments: disable # Disable comment formatting checks + braces: disable brackets: disable # Disable bracket spacing checks colons: max-spaces-after: -1 # Allow any number of spaces after colon diff --git a/tools/docker/docker-compose.yml b/tools/docker/docker-compose.yml index 1169b46c263..8179be28af6 100644 --- a/tools/docker/docker-compose.yml +++ b/tools/docker/docker-compose.yml @@ -24,7 +24,7 @@ services: - db:/var/lib/mysql environment: MYSQL_DATABASE: cloud -# MYSQL_ROOT_PASSWORD: root + # MYSQL_ROOT_PASSWORD: root MYSQL_ALLOW_EMPTY_PASSWORD: 1 MYSQL_USER: cloud MYSQL_PASSWORD: cloud