From 499e29fea9cfabfa227704f4349bcbf70c5dbade Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Mon, 13 Feb 2023 16:13:25 +0900 Subject: [PATCH] Drop deprecated stylelint-config-prettier (#67) https://github.com/prettier/stylelint-config-prettier/issues/140 --- .github/workflows/lint.yml | 2 +- .stylelintrc.json | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c6c3e82..c37873f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: with: deno-version: v1.29.3 # https://github.com/denoland/deno/issues/16901 - - run: deno cache --node-modules-dir npm:stylelint npm:stylelint-config-standard npm:stylelint-config-prettier + - run: deno cache --node-modules-dir npm:stylelint@15.1.0 npm:stylelint-config-standard@30.0.1 - run: ./stylelint.bash dprint: diff --git a/.stylelintrc.json b/.stylelintrc.json index 2e8ff58..0a08a15 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -1,3 +1,3 @@ { - "extends": ["stylelint-config-standard", "stylelint-config-prettier"] + "extends": ["stylelint-config-standard"] } diff --git a/README.md b/README.md index 69bb271..1f2d711 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Then you can access to http://localhost:4507/ Run stylelint ```console -deno cache --node-modules-dir npm:stylelint npm:stylelint-config-standard npm:stylelint-config-prettier +deno cache --node-modules-dir npm:stylelint@15.1.0 npm:stylelint-config-standard@30.0.1 --reload ./stylelint.bash ```