GitHub user asafm7 added a comment to the discussion: Un filtering previously filtered out hints or errors
@asbachb, I found it under `\AppData\Roaming\NetBeans\24\config\Editors\text\css\Preferences\org-netbeans-modules-editor-settings-CustomPreferences.xml`. The line I was looking for is the one with "disabledErrorChecks". Is it accessible in the UI? Maybe it should be? ```xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE editor-preferences PUBLIC "-//NetBeans//DTD Editor Preferences 1.0//EN" "http://www.netbeans.org/dtds/EditorPreferences-1_0.dtd"> <editor-preferences> <entry javaType="java.lang.Boolean" name="code-folding-collapse-import" xml:space="preserve"><value><![CDATA[false]]></value></entry> <entry javaType="java.lang.Boolean" name="code-folding-collapse-initial-comment" xml:space="preserve"><value><![CDATA[false]]></value></entry> <entry javaType="java.lang.Boolean" name="code-folding-collapse-innerclass" xml:space="preserve"><value><![CDATA[false]]></value></entry> <entry javaType="java.lang.Boolean" name="code-folding-collapse-javadoc" xml:space="preserve"><value><![CDATA[false]]></value></entry> <entry javaType="java.lang.Boolean" name="code-folding-collapse-method" xml:space="preserve"><value><![CDATA[false]]></value></entry> <entry javaType="java.lang.Boolean" name="code-folding-collapse-tags" xml:space="preserve"><value><![CDATA[false]]></value></entry> /* THIS LINE -> */ <entry javaType="java.lang.String" name="disabledErrorChecks" xml:space="preserve"><value><![CDATA[;unknown_property/text-decoration-color;]]></value></entry> <entry javaType="java.lang.Boolean" name="enable-indent" xml:space="preserve"><value><![CDATA[true]]></value></entry> </editor-preferences> ``` GitHub link: https://github.com/apache/netbeans/discussions/6062#discussioncomment-12530141 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
