sumpfralle commented on code in PR #16401: URL: https://github.com/apache/nuttx/pull/16401#discussion_r2093260889
########## .codespell-ignore-lines: ########## @@ -15,4 +15,162 @@ Linix 45ZWN24-40 2 0.5 Ohm 0.400 mH 2.34A 24V * [#14540](https://github.com/apache/nuttx/pull/14540) CMake/preprocess: fix typo PREPROCES -> PREPROCESS * [#14927](https://github.com/apache/nuttx/pull/14927) spelling: fix spelling typo premption -> preemption * [#15520](https://github.com/apache/nuttx/pull/15520) drivers/note: fix typo falgs and align local name to irq_mask +* [#4526](https://github.com/apache/nuttx/pull/4526) Rearch video +* [#6447](https://github.com/apache/nuttx/pull/6447) bcm43xxx: Remove bcmf_txavail_work and resue bcmf_tx_poll_work ans init + uint32_t levl; + levl = classd_get_atten(vol, AUDIO_BALANCE_RIGHT - bal); Review Comment: I tried to follow this approach: 1. Is it clearly wrong? -> fix it 1. Can it be easily renamed? -> rename * for the above example: `levl` means something like `level_left`. But the code style discourages the use of underscores in variable names. Thus, I did not rename it. 1. Is the misspelling used in many files (e.g. a traditional spelling of a variable name in a specific context)? -> add to `ignore-words-list` in `.codespellrc` 1. All others -> add line exception to `.codespell-ignore-lines` Personally I would suggest to understand `.codespell-ignore-lines` as an unsorted collection of all lines, which are certainly spelled correctly. Thus, I would suggest to *not* consider it as a well-documented perfectly maintained archive of wisdom. It is just there to make it easy to work with codespell's false positives. I tried to document the above intended usage in the `.codespellrc` file (see #16302). Of course, I am fine with any other approach. If you suggest an alternative handling, I could prepare a separate PR for changing the documentation in the `.codespellrc` file. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org