fix(formatting): Fix formatting and disable JSON hook (#10492)
This commit is contained in:
parent
9e643c08a7
commit
01789a7a89
6 changed files with 6 additions and 0 deletions
|
|
@ -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: |
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ import os
|
|||
|
||||
fib_results = {}
|
||||
|
||||
|
||||
def fib(n):
|
||||
if n < 2:
|
||||
return n
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
import logging
|
||||
|
||||
|
||||
def test_gpio(dut):
|
||||
LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
import logging
|
||||
|
||||
|
||||
def test_nvs(dut):
|
||||
LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
import logging
|
||||
|
||||
|
||||
def test_periman(dut):
|
||||
LOGGER = logging.getLogger(__name__)
|
||||
peripherals = [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
import logging
|
||||
|
||||
|
||||
def test_wifi(dut):
|
||||
LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue