fix(formatting): Fix formatting and disable JSON hook (#10492)

This commit is contained in:
Lucas Saavedra Vaz 2024-10-21 12:29:05 -03:00 committed by GitHub
parent 9e643c08a7
commit 01789a7a89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 6 additions and 0 deletions

View file

@ -26,6 +26,7 @@ repos:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: pretty-format-json
stages: [manual]
args: [--autofix]
types_or: [json]
exclude: |

View file

@ -4,6 +4,7 @@ import os
fib_results = {}
def fib(n):
if n < 2:
return n

View file

@ -1,5 +1,6 @@
import logging
def test_gpio(dut):
LOGGER = logging.getLogger(__name__)

View file

@ -1,5 +1,6 @@
import logging
def test_nvs(dut):
LOGGER = logging.getLogger(__name__)

View file

@ -1,5 +1,6 @@
import logging
def test_periman(dut):
LOGGER = logging.getLogger(__name__)
peripherals = [

View file

@ -1,5 +1,6 @@
import logging
def test_wifi(dut):
LOGGER = logging.getLogger(__name__)