diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5a77b8c5..8716dc1e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,7 +5,7 @@ ci: # Attempts to use networking and fails at name resolution, local hook # skip: [bundler-audit, pylint, latexmk, exiftool] - skip: [pnpm-install-dev, prettier] + skip: [install-dev-deps, prettier] # Forĝejo/Gitea mirrors will autoclose pull requests. This should decrease # the frequency of unnecessary PRs. # https://github.com/pre-commit-ci/issues/issues/83 @@ -132,16 +132,16 @@ repos: - repo: local hooks: - - id: pnpm-install-dev + - id: install-dev-deps name: Install pnpm dev dependencies - entry: pnpm install -D + entry: corepack pnpm install -D language: system always_run: true verbose: true pass_filenames: false - id: prettier name: prettier - entry: pnpm exec prettier --cache --ignore-unknown --write + entry: corepack pnpm exec prettier --cache --ignore-unknown --write language: system exclude_types: [json] diff --git a/package.json b/package.json index 7cc6ec79..fd6ac5a1 100644 --- a/package.json +++ b/package.json @@ -6,5 +6,6 @@ "prettier-plugin-nginx": "1.0.3", "prettier-plugin-sh": "0.14.0", "prettier-plugin-toml": "2.0.1" - } + }, + "packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a" }