This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
import re | |
from typing import Dict, Set | |
clang_tidy_log = sys.argv[1] | |
# A clang-tidy diagnostic is of the form: | |
# <path>:<line>:<column>: <warning|error>: <message> [<diagnostic-name(s)>] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
(function ($) { | |
/** | |
* Detects all component attributes that have only a single value option and adds the '.single-choice' class | |
* to the respective table row. Additionally, a <span> with the class '.single-choice-label' is added, containing | |
* the options name. | |
* | |
* If executed twice, the previous changes are reverted first (in order to account for possible scenario changes). | |
* Default values or previous selections are saved and restored if the option becomes available again. |