Closed
Description
It would be nice if there was an option to exclude code block.
Often these contain Classnames etc. that are not used and therefor marked as "wrong"
Example would be:
ExampleAppWithCookies
in this code:
::: code-group
\`\`\`xml [manifest.xml]
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/shopware/trunk/src/Core/Framework/App/Manifest/Schema/manifest-2.0.xsd">
<meta>
<name>ExampleAppWithCookies</name>
<version>1.0.0</version>
<!-- other meta data goes here -->
</meta>
<cookies>
<cookie>
<cookie>my-cookie</cookie>
<snippet-name>example-app-with-cookies.my-cookie.name</snippet-name>
<snippet-description>example-app-with-cookies.my-cookie.description</snippet-description>
<value>a static value for the cookie</value>
<expiration>1</expiration>
</cookie>
</cookies>
</manifest>
\`\`\`
:::