forked from hrq1408/teste-fullstack-hrq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.phpcs.xml
25 lines (21 loc) · 1.02 KB
/
.phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0"?>
<ruleset
name="CNNBr"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
<description>PHPCS rules for CNNBr.</description>
<!-- Configurações do scan -->
<arg value="sp"/> <!-- Exibe o progresso -->
<arg name="colors"/> <!-- Retorna os resultados com cores -->
<arg name="basepath" value="."/> <!-- Diminui o caminho dos arquivos -->
<arg name="parallel" value="8"/> <!-- Habilita scan paralelo, para ser mais rápido -->
<arg name="extensions" value="php,js"/> <!-- Escaneia apenas PHP e JS -->
<!-- Versão mínima do PHP -->
<rule ref="PHPCompatibilityWP"/>
<config name="testVersion" value="8.0-"/>
<!-- VIP Coding Standards - https://github.com/Automattic/VIP-Coding-Standards -->
<rule ref="WordPress-VIP-Go"/>
<rule ref="WordPressVIPMinimum"/>
<!-- Versão mínima do WP -->
<config name="minimum_supported_wp_version" value="6.0"/>
</ruleset>