Files
esp-idf/tools/idf_py_actions/global_options.py
Frantisek Hrbata 27a72e4660 style(tools): reformat global_options.py with ruff-format
This file predates the adoption of ruff-format and was never reformatted,
because pre-commit only runs on the files touched by a change. GitHub PR
#18871 bumps the copyright year here, which pulls the file into the hook's
scope and makes check_pre_commit fail on a pre-existing formatting
violation unrelated to that change.

Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2026-07-31 12:49:10 +02:00

11 lines
292 B
Python

# SPDX-FileCopyrightText: 2022-2026 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
global_options = [
{
'names': ['-D', '--define-cache-entry'],
'help': 'Create a cmake cache entry.',
'scope': 'global',
'multiple': True,
}
]