From f023834d9d167c81a72d09328a4afc5d47567950 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 16:02:22 +0000 Subject: [PATCH 1/2] chore(deps): update devdependency stylelint-config-standard to v37 --- package-lock.json | 22 ++++++++++++---------- package.json | 2 +- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7a33eb2e0..827ed903d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -51,7 +51,7 @@ "stylelint-config-css-modules": "4.4.0", "stylelint-config-lost": "0.0.3", "stylelint-config-recess-order": "5.1.1", - "stylelint-config-standard": "36.0.1" + "stylelint-config-standard": "37.0.0" } }, "node_modules/@ampproject/remapping": { @@ -20305,9 +20305,9 @@ } }, "node_modules/stylelint-config-recommended": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz", - "integrity": "sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==", + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-15.0.0.tgz", + "integrity": "sha512-9LejMFsat7L+NXttdHdTq94byn25TD+82bzGRiV1Pgasl99pWnwipXS5DguTpp3nP1XjvLXVnEJIuYBfsRjRkA==", "dev": true, "funding": [ { @@ -20319,17 +20319,18 @@ "url": "https://github.com/sponsors/stylelint" } ], + "license": "MIT", "engines": { "node": ">=18.12.0" }, "peerDependencies": { - "stylelint": "^16.1.0" + "stylelint": "^16.13.0" } }, "node_modules/stylelint-config-standard": { - "version": "36.0.1", - "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-36.0.1.tgz", - "integrity": "sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==", + "version": "37.0.0", + "resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-37.0.0.tgz", + "integrity": "sha512-+6eBlbSTrOn/il2RlV0zYGQwRTkr+WtzuVSs1reaWGObxnxLpbcspCUYajVQHonVfxVw2U+h42azGhrBvcg8OA==", "dev": true, "funding": [ { @@ -20341,14 +20342,15 @@ "url": "https://github.com/sponsors/stylelint" } ], + "license": "MIT", "dependencies": { - "stylelint-config-recommended": "^14.0.1" + "stylelint-config-recommended": "^15.0.0" }, "engines": { "node": ">=18.12.0" }, "peerDependencies": { - "stylelint": "^16.1.0" + "stylelint": "^16.13.0" } }, "node_modules/stylelint-order": { diff --git a/package.json b/package.json index 7965819be..677b03be8 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "stylelint-config-css-modules": "4.4.0", "stylelint-config-lost": "0.0.3", "stylelint-config-recess-order": "5.1.1", - "stylelint-config-standard": "36.0.1" + "stylelint-config-standard": "37.0.0" }, "dependencies": { "@csstools/postcss-global-data": "3.0.0", From 91914943b02b6638e36d11cc1e4e11dacec61ee3 Mon Sep 17 00:00:00 2001 From: Thorn Walli Date: Mon, 13 Jan 2025 17:05:41 +0100 Subject: [PATCH 2/2] chore(stylelint): added missing rule --- .stylelintrc | 8 ++++++++ renovate.json | 23 +++++++++-------------- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/.stylelintrc b/.stylelintrc index b55b34f04..3192d548d 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -16,6 +16,14 @@ "camelCaseSvgKeywords": true } ], + "declaration-property-value-no-unknown": [ + true, + { + "ignoreProperties": { + "/.+/": "/(vw|em|lost-gutter|lost-vars)+/" + } + } + ], "function-no-unknown": [ true, { diff --git a/renovate.json b/renovate.json index 5635b0527..d822e45a5 100644 --- a/renovate.json +++ b/renovate.json @@ -1,18 +1,9 @@ { "extends": [ - "@nuxtjs" + "@nuxtjs", + ":semanticCommits" ], - "baseBranches": [ - "main" - ], - "rangeStrategy": "pin", "packageRules": [ - { - "packagePatterns": [ - "snyk" - ], - "groupName": "snyk" - }, { "packageNames": [ "node" @@ -21,7 +12,11 @@ "enabled": true }, "separateMultipleMajor": true, - "allowedVersions": "^16" + "allowedVersions": "^20" } - ] -} + ], + "baseBranches": [ + "main" + ], + "rangeStrategy": "pin" +} \ No newline at end of file