
Two proposals here, I prefer the first one, but it might be confusing for the user because eg. If you'd like to see this feature implemented, add a 👍 reaction to this post.
#Disable edit mode word full
I intentionally didn't use full editing mode as it might bring up some historical connotations with our lovely full package 🙂

Select or press Ctrl+Alt+Shift+H.📝 Provide a description of the new feature You can also change the highlighting level from the main menu. Hover the mouse over the widget in top-right corner of the editor and select another level from the Highlight list:Īll Problems: (default) highlight syntax problems and problems found by inspections.
#Disable edit mode word code
To re-enable a suppressed inspection, delete the /** */ annotation.īy default, PhpStorm highlights all detected code problems. For example, if you suppress an inspection for a method, PhpStorm adds the annotation before this method. When you suppress an inspection, the IDE adds the /** */ annotation before the selected symbol. In the Inspection Results tool window (after running code analysis), right-click the inspection you want to suppress and select the necessary suppress action. Suppress an inspection in the Inspection Results tool window You can also suppress all inspections in a ruleset. In Style Sheets, an inspection can be suppressed in the current statement or in the current ruleset. In Html and Vue.js you can suppress an inspection inside the current tag, or on the whole file, or even suppress all inspections in the current file. You can suppress an inspection in an entire TypeScript or JavaScript class or file. Suppress an inspection in the editorĬlick the arrow next to the inspection you want to suppress, and select the necessary suppress action. In HTML and Vue.js, an inspection can be also suppressed in the whole file. You can suppress an inspection in entire JavaScript and TypeScript classes and files. When you suppress an inspection, the code analysis engine doesn't highlight the problem found by this inspection in the specific piece of code (class, method, property, or statement). You can also click and select Show Only Modified Inspections to display only the inspections with changed settings. Modified inspections are written in blue. Locate the disabled inspection in the list and select the checkbox next to it. You can also press Ctrl+Alt+Shift+H and select Configure Inspections. In the Settings/Preferences dialog ( Ctrl+Alt+S), select to Editor | Inspections. In the Inspection Results tool window (after running code analysis), right-click the inspection you want to disable and select Disable inspection.Ĭlick to hide the disabled inspection alerts. Place the caret at the highlighted line and press Alt+Enter (or click to use the intention action).Ĭlick the arrow next to the inspection you want to disable, and select Disable inspection.ĭisable an inspection in the Results tool window You can quickly disable a triggered inspection directly in the editor. Locate the inspection you want to disable, and clear the checkbox next to it. In the Settings/Preferences dialog ( Ctrl+Alt+S), select Editor | Inspections.

Disable inspections Disable an inspection in the settings Note that when you disable an inspection, you disable it in the current inspection profile it remains enabled in other profiles. It means that the code analysis engine stops searching project files for the problem that this inspection is designed to detect. When you disable an inspection, you turn it off. In this case, you can disable or suppress them. Some inspections may report problems that you currently do not want to see.
