From 4904af72b802dfbb8185ab6d94ed3c39df1621e6 Mon Sep 17 00:00:00 2001 From: Toby Boekwijt Date: Sun, 25 Jan 2026 00:31:36 +0100 Subject: [PATCH] fix: revert replace `stylelint-config-standard` with `@dreamsicle.io/stylelint-config-tailwindcss` --- .changeset/curly-dancers-care.md | 5 +++++ package.json | 1 + pnpm-lock.yaml | 14 ++++++++++++++ src/index.js | 6 +++++- src/property-groups.js | 16 ---------------- 5 files changed, 25 insertions(+), 17 deletions(-) create mode 100644 .changeset/curly-dancers-care.md diff --git a/.changeset/curly-dancers-care.md b/.changeset/curly-dancers-care.md new file mode 100644 index 0000000..58aa48d --- /dev/null +++ b/.changeset/curly-dancers-care.md @@ -0,0 +1,5 @@ +--- +'@perplex-digital/stylelint-config': patch +--- + +- Revert replace `stylelint-config-standard` with `@dreamsicle.io/stylelint-config-tailwindcss` diff --git a/package.json b/package.json index a77a119..2e132d0 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,7 @@ "@dreamsicle.io/stylelint-config-tailwindcss": "^1.2.1", "@stylistic/stylelint-plugin": "^4.0.1", "stylelint-config-recommended-vue": "^1.6.1", + "stylelint-config-standard": "^40.0.0", "stylelint-high-performance-animation": "^1.11.0", "stylelint-order": "^7.0.1", "stylelint-use-logical-spec": "^5.0.1" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f2f685b..cf95232 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,6 +17,9 @@ importers: stylelint-config-recommended-vue: specifier: ^1.6.1 version: 1.6.1(postcss-html@1.8.0)(stylelint@17.0.0(typescript@5.9.3)) + stylelint-config-standard: + specifier: ^40.0.0 + version: 40.0.0(stylelint@17.0.0(typescript@5.9.3)) stylelint-high-performance-animation: specifier: ^1.11.0 version: 1.11.0(stylelint@17.0.0(typescript@5.9.3)) @@ -1957,6 +1960,12 @@ packages: peerDependencies: stylelint: ^17.0.0 + stylelint-config-standard@40.0.0: + resolution: {integrity: sha512-EznGJxOUhtWck2r6dJpbgAdPATIzvpLdK9+i5qPd4Lx70es66TkBPljSg4wN3Qnc6c4h2n+WbUrUynQ3fanjHw==} + engines: {node: '>=20.19.0'} + peerDependencies: + stylelint: ^17.0.0 + stylelint-high-performance-animation@1.11.0: resolution: {integrity: sha512-bo+VfSH5RmjVmu61BZeN4cBK+PGHpG5jfvaUsw0db+1sAqKuEGjzmxEbf271/Jq3HJHj8wyi/rCg1IcxxnIiiQ==} peerDependencies: @@ -4125,6 +4134,11 @@ snapshots: dependencies: stylelint: 17.0.0(typescript@5.9.3) + stylelint-config-standard@40.0.0(stylelint@17.0.0(typescript@5.9.3)): + dependencies: + stylelint: 17.0.0(typescript@5.9.3) + stylelint-config-recommended: 18.0.0(stylelint@17.0.0(typescript@5.9.3)) + stylelint-high-performance-animation@1.11.0(stylelint@17.0.0(typescript@5.9.3)): dependencies: postcss-value-parser: 4.2.0 diff --git a/src/index.js b/src/index.js index 1e75738..295b643 100644 --- a/src/index.js +++ b/src/index.js @@ -2,7 +2,11 @@ import order from './order.js'; import propertyGroups from './property-groups.js'; const config = { - extends: ['@dreamsicle.io/stylelint-config-tailwindcss', 'stylelint-config-recommended-vue'], + extends: [ + 'stylelint-config-standard', + '@dreamsicle.io/stylelint-config-tailwindcss', + 'stylelint-config-recommended-vue', + ], plugins: [ '@stylistic/stylelint-plugin', 'stylelint-order', diff --git a/src/property-groups.js b/src/property-groups.js index fc166c3..f8ec8e7 100644 --- a/src/property-groups.js +++ b/src/property-groups.js @@ -260,22 +260,6 @@ const propertyGroups = [ 'corner-top-right-shape', 'corner-bottom-right-shape', 'corner-bottom-left-shape', - 'corner-block-start-shape', - 'corner-block-end-shape', - 'corner-inline-start-shape', - 'corner-inline-end-shape', - 'corner-start-start-shape', - 'corner-start-end-shape', - 'corner-end-start-shape', - 'corner-end-end-shape', - 'corner-top-shape', - 'corner-right-shape', - 'corner-bottom-shape', - 'corner-left-shape', - 'corner-top-left-shape', - 'corner-top-right-shape', - 'corner-bottom-right-shape', - 'corner-bottom-left-shape', 'border-image', 'border-image-source', 'border-image-slice',