From 1502197c3a63714d9d9603c7784af34ce264d7be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 May 2025 07:41:48 +0000 Subject: [PATCH 1/3] chore(deps-dev): bump stylelint-config-standard from 37.0.0 to 38.0.0 Bumps [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) from 37.0.0 to 38.0.0. - [Release notes](https://github.com/stylelint/stylelint-config-standard/releases) - [Changelog](https://github.com/stylelint/stylelint-config-standard/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint-config-standard/compare/37.0.0...38.0.0) --- updated-dependencies: - dependency-name: stylelint-config-standard dependency-version: 38.0.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 997fec98d9..f48eb4c490 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "sass": "1.87.0", "slugify": "^1.6.6", "stylelint": "^16.14.1", - "stylelint-config-standard": "^37.0.0", + "stylelint-config-standard": "^38.0.0", "stylelint-config-standard-scss": "^14.0.0", "stylelint-scss": "^6.11.0", "ts-jest": "^29.2.5", diff --git a/yarn.lock b/yarn.lock index 69c7526d54..07c7ffc8fd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8872,7 +8872,7 @@ __metadata: sass: "npm:1.87.0" slugify: "npm:^1.6.6" stylelint: "npm:^16.14.1" - stylelint-config-standard: "npm:^37.0.0" + stylelint-config-standard: "npm:^38.0.0" stylelint-config-standard-scss: "npm:^14.0.0" stylelint-scss: "npm:^6.11.0" ts-jest: "npm:^29.2.5" @@ -10025,12 +10025,12 @@ __metadata: languageName: node linkType: hard -"stylelint-config-recommended@npm:^15.0.0": - version: 15.0.0 - resolution: "stylelint-config-recommended@npm:15.0.0" +"stylelint-config-recommended@npm:^16.0.0": + version: 16.0.0 + resolution: "stylelint-config-recommended@npm:16.0.0" peerDependencies: - stylelint: ^16.13.0 - checksum: 10c0/de82e675e7d0cdbc486beee1f76002d5a5676247c1780fbe04f6adb617b016033f18f3361f4e99a76fc4d2115fbfc97786d9cf87ee7d90a345e146de35b04ab8 + stylelint: ^16.16.0 + checksum: 10c0/b2b4ea2633a606a0f686521aa5e8908810c9dd21fd4525c86b34213de1e362b445fd5472b6e5ff251d46f999e2ca2c6c704f2efc1c08d5a532084427f4e1c9d8 languageName: node linkType: hard @@ -10061,14 +10061,14 @@ __metadata: languageName: node linkType: hard -"stylelint-config-standard@npm:^37.0.0": - version: 37.0.0 - resolution: "stylelint-config-standard@npm:37.0.0" +"stylelint-config-standard@npm:^38.0.0": + version: 38.0.0 + resolution: "stylelint-config-standard@npm:38.0.0" dependencies: - stylelint-config-recommended: "npm:^15.0.0" + stylelint-config-recommended: "npm:^16.0.0" peerDependencies: - stylelint: ^16.13.0 - checksum: 10c0/99c184384126f8676061c857e36d6d58fd9b391c1c1ec94a3f019c23ba1e0dc7665fc064a630f6ee66bc8624a6fd850fc7ab33ff086f5fde7b46d4ae0d92edf5 + stylelint: ^16.18.0 + checksum: 10c0/8b52c7b7d6287c7495a8fe3a681e07ea9478374e7e66b28d61779072d46cd5b845530b2410df7496a008a8efafe834fb46cf07792f4cf57f996e39f24a801b90 languageName: node linkType: hard From e396d41960b51ab6b0f0a07aceef1f51068c320d Mon Sep 17 00:00:00 2001 From: "claude[bot]" <209825114+claude[bot]@users.noreply.github.com> Date: Sat, 24 May 2025 12:06:25 +0000 Subject: [PATCH 2/3] fix: disable problematic color-function-alias-notation rule The stylelint-config-standard 38.0.0 upgrade introduced a new rule color-function-alias-notation that incorrectly flags valid rgba() functions with alpha values other than 1. Disabling this rule to prevent false positives while maintaining code quality. Co-authored-by: martijnrusschen --- .stylelintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.stylelintrc.json b/.stylelintrc.json index 30fcc905ce..f4b12ef58a 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -17,6 +17,7 @@ "property-no-vendor-prefix": null, "alpha-value-notation": null, "color-function-notation": null, + "color-function-alias-notation": null, "selector-pseudo-class-no-unknown": [ true, { From 1d54260e7e35b862c760712ddb24e48a954b4c47 Mon Sep 17 00:00:00 2001 From: Martijn Russchen Date: Sat, 24 May 2025 14:09:57 +0200 Subject: [PATCH 3/3] Fix linter --- .stylelintrc.json | 1 - src/stylesheets/datepicker.scss | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index f4b12ef58a..30fcc905ce 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -17,7 +17,6 @@ "property-no-vendor-prefix": null, "alpha-value-notation": null, "color-function-notation": null, - "color-function-alias-notation": null, "selector-pseudo-class-no-unknown": [ true, { diff --git a/src/stylesheets/datepicker.scss b/src/stylesheets/datepicker.scss index 7ee7de569d..abc7531a28 100644 --- a/src/stylesheets/datepicker.scss +++ b/src/stylesheets/datepicker.scss @@ -694,7 +694,7 @@ h2.react-datepicker__current-month { position: fixed; width: 100vw; height: 100vh; - background-color: rgba(0, 0, 0, 0.8); + background-color: rgb(0, 0, 0, 0.8); left: 0; top: 0; justify-content: center;