From 1e2a70941e72fdaaf3a830e2c13ef480cad027da Mon Sep 17 00:00:00 2001 From: Sam Maister Date: Wed, 21 Feb 2024 17:10:13 +0000 Subject: [PATCH] fix: stylelint --- .stylelintignore | 2 +- .stylelintrc.json | 2 +- package.json | 1 - pnpm-lock.yaml | 13 ------------- src/css/tailwind.src.pcss | 3 ++- 5 files changed, 4 insertions(+), 17 deletions(-) diff --git a/.stylelintignore b/.stylelintignore index 076a0c8f..443a85cc 100644 --- a/.stylelintignore +++ b/.stylelintignore @@ -1 +1 @@ -index.ejs \ No newline at end of file +index.ejs diff --git a/.stylelintrc.json b/.stylelintrc.json index eb87719d..a1ca0fd7 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -1,5 +1,5 @@ { - "extends": ["stylelint-config-standard", "stylelint-config-prettier"], + "extends": ["stylelint-config-standard"], "rules": { "at-rule-no-unknown": [ true, diff --git a/package.json b/package.json index 1dd08737..d8b58ad0 100644 --- a/package.json +++ b/package.json @@ -138,7 +138,6 @@ "source-map-loader": "^5.0.0", "source-map-support": "^0.5.21", "stylelint": "^16.2.1", - "stylelint-config-prettier": "^9.0.5", "stylelint-config-standard": "^36.0.0", "tailwindcss": "^3.4.1", "tailwindcss-scoped-groups": "^2.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bbd7cd12..0b5710be 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -262,9 +262,6 @@ devDependencies: stylelint: specifier: ^16.2.1 version: 16.2.1(typescript@5.3.3) - stylelint-config-prettier: - specifier: ^9.0.5 - version: 9.0.5(stylelint@16.2.1) stylelint-config-standard: specifier: ^36.0.0 version: 36.0.0(stylelint@16.2.1) @@ -11369,16 +11366,6 @@ packages: postcss-selector-parser: 6.0.15 dev: true - /stylelint-config-prettier@9.0.5(stylelint@16.2.1): - resolution: {integrity: sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA==} - engines: {node: '>= 12'} - hasBin: true - peerDependencies: - stylelint: '>= 11.x < 15' - dependencies: - stylelint: 16.2.1(typescript@5.3.3) - dev: true - /stylelint-config-recommended@14.0.0(stylelint@16.2.1): resolution: {integrity: sha512-jSkx290CglS8StmrLp2TxAppIajzIBZKYm3IxT89Kg6fGlxbPiTiyH9PS5YUuVAFwaJLl1ikiXX0QWjI0jmgZQ==} engines: {node: '>=18.12.0'} diff --git a/src/css/tailwind.src.pcss b/src/css/tailwind.src.pcss index 3fcf5b88..c8a969ab 100644 --- a/src/css/tailwind.src.pcss +++ b/src/css/tailwind.src.pcss @@ -4,7 +4,7 @@ @tailwind components; @tailwind utilities; -/* Tailwind base / preflight styles: https://unpkg.com/tailwindcss@3.0.5/lib/css/preflight.css */ +/* Tailwind base / preflight styles: https://unpkg.com/tailwindcss@3.4.1/lib/css/preflight.css */ * { @apply box-border; @@ -12,6 +12,7 @@ html { font-family: var(--font-family-name); + @apply h-full; }