PluginProbe
Image Optimizer – Compress Images and Convert to WebP or AVIF / 1.7.7
Image Optimizer – Compress Images and Convert to WebP or AVIF v1.7.7
1.7.7 1.7.6 1.7.5 1.7.4 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.2.0 1.2.1 1.3.0 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 All 33 releases
image-optimization / vendor / elementor / wp-notifications-package / phpcs.xml

phpcs.xml in Image Optimizer – Compress Images and Convert to WebP or AVIF 1.7.7, at vendor/elementor/wp-notifications-package/phpcs.xml

55 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?xml version="1.0"?>
2 <ruleset name="WordPress.Elementor">
3 <description>Elementor Coding Standards</description>
4
5 <arg name="parallel" value="8" />
6
7 <config name="text_domain" value="wp-notifications-package" />
8
9 <exclude-pattern>vendor/</exclude-pattern>
10 <exclude-pattern>build/</exclude-pattern>
11 <exclude-pattern>node_modules/</exclude-pattern>
12 <exclude-pattern>tests/*.php</exclude-pattern>
13 <exclude-pattern>*.js</exclude-pattern>
14 <exclude-pattern>*.css</exclude-pattern>
15 <exclude-pattern>*.scss</exclude-pattern>
16
17 <rule ref="WordPress-Core">
18 <exclude name="Universal.Arrays.DisallowShortArraySyntax"/>
19 </rule>
20
21 <rule ref="WordPress.Security" />
22
23 <rule ref="WordPress-Extra">
24 <exclude name="Generic.Commenting.DocComment.MissingShort" />
25 <exclude name="Generic.Formatting.MultipleStatementAlignment" />
26 <exclude name="Generic.Arrays.DisallowShortArraySyntax.Found" />
27 <exclude name="Squiz.Commenting.ClassComment.Missing" />
28 <exclude name="Squiz.Commenting.FileComment.Missing" />
29 <exclude name="Squiz.Commenting.FunctionComment.Missing" />
30 <exclude name="Squiz.Commenting.FunctionComment.MissingParamComment" />
31 <exclude name="Squiz.Commenting.VariableComment.Missing" />
32 <exclude name="Squiz.PHP.EmbeddedPhp.ContentBeforeOpen" />
33 <exclude name="Squiz.PHP.EmbeddedPhp.ContentAfterOpen" />
34 <exclude name="Squiz.PHP.EmbeddedPhp.ContentBeforeEnd" />
35 <exclude name="Squiz.PHP.EmbeddedPhp.ContentAfterEnd" />
36 <exclude name="WordPress.Files.FileName.NotHyphenatedLowercase" />
37 <exclude name="WordPress.Arrays.MultipleStatementAlignment" />
38 <exclude name="WordPress.CSRF.NonceVerification.NoNonceVerification" />
39 <exclude name="WordPress.Files.FileName.InvalidClassFileName" />
40 <exclude name="WordPress.WP.I18n.MissingTranslatorsComment" />
41 <exclude name="WordPress.WP.I18n.NonSingularStringLiteralSingle" />
42 <exclude name="WordPress.WP.I18n.NonSingularStringLiteralPlural" />
43 <exclude name="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket" />
44 <exclude name="PEAR.Functions.FunctionCallSignature.MultipleArguments" />
45 <exclude name="PEAR.Functions.FunctionCallSignature.CloseBracketLine" />
46 </rule>
47
48 <rule ref="WordPress.NamingConventions.ValidHookName">
49 <properties>
50 <property name="additionalWordDelimiters" value="/-" />
51 </properties>
52 </rule>
53 <rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
54 </ruleset>
55