Skip to content

Commit ea03a8a

Browse files
committed
fix(formatting): Fix formatting and disable JSON hook
1 parent 9e643c0 commit ea03a8a

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

.pre-commit-config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ repos:
2626
- id: trailing-whitespace
2727
args: [--markdown-linebreak-ext=md]
2828
- id: pretty-format-json
29+
stages: [manual]
2930
args: [--autofix]
3031
types_or: [json]
3132
exclude: |

tests/performance/fibonacci/test_fibonacci.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
fib_results = {}
66

7+
78
def fib(n):
89
if n < 2:
910
return n

tests/validation/gpio/test_gpio.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import logging
22

3+
34
def test_gpio(dut):
45
LOGGER = logging.getLogger(__name__)
56

tests/validation/nvs/test_nvs.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import logging
22

3+
34
def test_nvs(dut):
45
LOGGER = logging.getLogger(__name__)
56

tests/validation/periman/test_periman.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import logging
22

3+
34
def test_periman(dut):
45
LOGGER = logging.getLogger(__name__)
56
peripherals = [

tests/validation/wifi/test_wifi.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import logging
22

3+
34
def test_wifi(dut):
45
LOGGER = logging.getLogger(__name__)
56

0 commit comments

Comments
 (0)