PluginProbe
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI / 1.4.2
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI v1.4.2
3.6.1 3.6.0 3.5.3 3.5.2 3.5.1 3.5.0 3.4.8 3.4.7 3.4.6 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 All 165 releases
everest-forms / phpcs.xml

phpcs.xml in Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI 1.4.2, at phpcs.xml

33 lines 1.0 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 Coding Standards">
3 <description>Everest Forms dev PHP_CodeSniffer ruleset.</description>
4
5 <!-- Exclude paths -->
6 <exclude-pattern>includes/libraries/</exclude-pattern>
7 <exclude-pattern>includes/evf-deprecated-functions.php</exclude-pattern>
8 <exclude-pattern>includes/abstracts/legacy/</exclude-pattern>
9 <exclude-pattern>*/node_modules/*</exclude-pattern>
10 <exclude-pattern>*/vendor/*</exclude-pattern>
11
12 <!-- Configs -->
13 <config name="minimum_supported_wp_version" value="4.7" />
14 <config name="testVersion" value="5.2-" />
15
16 <!-- Rules -->
17 <rule ref="WPEverest-Core" />
18
19 <rule ref="PEAR.NamingConventions.ValidClassName">
20 <exclude-pattern>includes/</exclude-pattern>
21 </rule>
22
23 <rule ref="WordPress.Files.FileName.InvalidClassFileName">
24 <exclude-pattern>includes/class-everest-forms.php</exclude-pattern>
25 </rule>
26
27 <rule ref="WordPress.WP.I18n">
28 <properties>
29 <property name="text_domain" type="array" value="everest-forms" />
30 </properties>
31 </rule>
32 </ruleset>
33