mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-28 20:32:28 +00:00
b80ccaa417
# ambiguous-variable-name (E741) Derived from the **pycodestyle** linter. ## What it does Checks for the use of the characters 'l', 'O', or 'I' as variable names. ## Why is this bad? In some fonts, these characters are indistinguishable from the numerals one and zero. When tempted to use 'l', use 'L' instead. ## Reason to ignore in LyX? With appropriated fonts that is not an issue. In our case we just use the 'l', in particular in the context of iterators: 'i', 'j', 'k', 'l'.