diff --git a/topics/tutorials/code_inspections.md b/topics/tutorials/code_inspections.md index ea19146e7..e0a5c246d 100644 --- a/topics/tutorials/code_inspections.md +++ b/topics/tutorials/code_inspections.md @@ -1,6 +1,6 @@ [//]: # (title: Code Inspections) - + The IntelliJ Platform provides tools designed for static code analysis called _code inspections_, which help the user maintain and clean up code without actually executing it. Custom code inspections can be implemented as IntelliJ Platform plugins. @@ -125,6 +125,12 @@ Implicit in using [`LocalInspectionTool`](upsource:///platform/analysis-api/src/ * The name of the description file is expected to be the inspection $SHORT_NAME$.html as provided by the inspection description, or the inspection implementation class. If a short name is not provided by the plugin, the IntelliJ Platform computes one by removing `Inspection` suffix from the implementation class name. + > To open related [settings](settings.md) directly from the inspection description, add a link with `settings://$CONFIGURABLE_ID$`, optionally followed by `?$SEARCH_STRING$` to pre-select UI element: + > + > `See Includes tab in Settings | Editor | File and Code Templates to configure.` + > + {type="tip"} + ### Inspection Unit Test > Please note that running the test requires setting system property `idea.home.path` in `test {}` block of build.gradle. >