mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
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>
11 lines
292 B
Python
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,
|
|
}
|
|
]
|