8000 fix(formatting): Fix formatting and disable JSON hook (#10492) · mikeysklar/arduino-esp32@01789a7 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 01789a7

Browse files
authored
fix(formatting): Fix formatting and disable JSON hook (espressif#10492)
1 parent 9e643c0 commit 01789a7

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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)
0