-
Notifications
You must be signed in to change notification settings - Fork 133
IEP-1445 GH #1148: Avoid creating '.clang-format' on each compilation #1150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6aa32e4
c8a4e5e
ce1f4c0
2009005
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,5 +1,8 @@ | ||||||||||||||||||||||
| EspresssifPreferencesPage_AutoCreateClangFormatBtnName=Auto-create .clang-format | ||||||||||||||||||||||
| EspresssifPreferencesPage_AutoCreateClangFormatTooltipMsg=Ensures .clang-format exists, generating it if missing after project creation and on each build. | ||||||||||||||||||||||
|
Comment on lines
+1
to
+2
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Fix spelling and improve message organization.
Apply this diff to fix the issues: -EspresssifPreferencesPage_AutoCreateClangFormatBtnName=Auto-create .clang-format
-EspresssifPreferencesPage_AutoCreateClangFormatTooltipMsg=Ensures .clang-format exists, generating it if missing after project creation and on each build.
+EspressifPreferencesPage_AutoCreateClangFormatBtnName=Auto-create .clang-format
+EspressifPreferencesPage_AutoCreateClangFormatTooltipMsg=Automatically generate .clang-format file if missing during project creation and builds.Move these entries after line 3 ( 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||
| EspresssifPreferencesPage_BuildGroupTxt=Build Settings | ||||||||||||||||||||||
| EspresssifPreferencesPage_CCacheToolTip=This sets CCACHE_ENABLE=1 to the IDF CMake build, if the CCache tool is installed | ||||||||||||||||||||||
| EspresssifPreferencesPage_ClangdSettingsGroupName=Clangd Settings | ||||||||||||||||||||||
| EspresssifPreferencesPage_EnableCCache=Enable Ccache | ||||||||||||||||||||||
| EspresssifPreferencesPage_IDFSpecificPrefs=ESP-IDF Specific Preferences. | ||||||||||||||||||||||
| EspresssifPreferencesPage_SearchHintsCheckBtn=Search hints for build errors (may affect build performance) | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use
getDefaultBooleanfor resetting to default value.When resetting to defaults, use
getDefaultBooleaninstead ofgetBooleanto ensure the correct default value is used.Apply this diff to fix the issue:
📝 Committable suggestion