Merge branch 'bugfix/kconcheck_file_checks' into 'master'

bugfix: Fixed KConfig files that were not succesfully checked

Closes IDF-9028 and IDF-9027

See merge request espressif/esp-idf!28385
This commit is contained in:
Roland Dobai
2024-02-07 19:12:25 +08:00
13 changed files with 81 additions and 73 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ Format rules for Kconfig files are as follows:
- Option names in any menus should have consistent prefixes. The prefix currently should have at least 3 characters.
- The unit of indentation should be 4 spaces. All sub-items belonging to a parent item are indented by one level deeper. For example, ``menu`` is indented by 0 spaces, ``config`` ``menu`` by 4 spaces, ``help`` in ``config`` by 8 spaces, and the text under ``help`` by 12 spaces.
- No trailing spaces are allowed at the end of the lines.
- The maximum length of options is 40 characters.
- The maximum length of options is 50 characters.
- The maximum length of lines is 120 characters.
.. note::