diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 3cb2689061d67b..4ac3f26dc66800 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -154,7 +154,12 @@ jobs: run: | nix-shell -I nixpkgs=./tools/nix/pkgs.nix -p 'nixfmt-tree' --run ' treefmt --quiet --ci - ' || git --no-pager diff --exit-code + ' && EXIT_CODE="$?" || EXIT_CODE="$?" + if [ "$EXIT_CODE" != "0" ] + then + git --no-pager diff || true + exit "$EXIT_CODE" + fi lint-py: if: github.event.pull_request.draft == false diff --git a/doc/api/globals.md b/doc/api/globals.md index 47340c897b4a36..6c0caca06d3dbb 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -976,6 +976,14 @@ DataHandler.prototype.load = async function load(key) { }; ``` +## Class: `QuotaExceededError` + + + +The WHATWG {QuotaExceededError} class. Extends {DOMException}. + ## Class: `ReadableByteStreamController`