Skip to content

Commit 3c4c9ac

Browse files
committed
Disable biome for now
1 parent 4ad4561 commit 3c4c9ac

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/verify.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,11 @@ jobs:
127127
run: |
128128
. venv/bin/activate
129129
pre-commit run --show-diff-on-failure --color=always --all-files --hook-stage manual pylint
130-
- name: Biome lint
131-
run: |
132-
. venv/bin/activate
133-
mkdir -p ./tmp && curl -sL "https://github.com/biomejs/biome/releases/download/%40biomejs%2Fbiome%402.0.0/biome-darwin-arm64" -o ./tmp/biome && chmod +x ./tmp/biome
134-
pre-commit run --show-diff-on-failure --color=always --all-files --hook-stage manual biome
130+
# - name: Biome lint
131+
# run: |
132+
# . venv/bin/activate
133+
# mkdir -p ./tmp && curl -sL "https://github.com/biomejs/biome/releases/download/%40biomejs%2Fbiome%402.0.0/biome-darwin-arm64" -o ./tmp/biome && chmod +x ./tmp/biome
134+
# pre-commit run --show-diff-on-failure --color=always --all-files --hook-stage manual biome
135135
- name: Lint markdown files
136136
run: |
137137
. venv/bin/activate

scripts/tests_and_coverage.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ if [ -z "${GITHUB_ACTIONS}" ] || [ "$1" == "test_and_coverage" ] ; then
6161
fi
6262

6363
if [ -z "${GITHUB_ACTIONS}" ] || [ "$1" == "linting" ] ; then
64-
echo "... biome-ing (prettier) ..."
65-
biome_format
64+
# Disabled as per #270
65+
# echo "... biome-ing (prettier) ..."
66+
# biome_format
6667

6768
echo "... ruff checking ..."
6869
ruff check plugwise_usb/ tests/

0 commit comments

Comments
 (0)