summaryrefslogtreecommitdiffstats
path: root/phpcs.xml
diff options
context:
space:
mode:
authordanix <danix@danix.xyz>2020-11-05 13:51:16 +0100
committerdanix <danix@danix.xyz>2020-11-05 13:51:16 +0100
commit89b9676f82730562289a64a166d07324ab41387c (patch)
tree044b79f3e32c8f15af42ba757ef9b3107b51db6d /phpcs.xml
parent2f370882455238578d210f1189dd10cc357c06e4 (diff)
downloaddanixland-site-plugin-release_05112020-1351.tar.gz
danixland-site-plugin-release_05112020-1351.zip
Linted file. Added phpcs.xml config file for linting. Addedrelease_05112020-1351
functionality to stop WP from translating smileys into emoticons. modificato: danixland-site-plugin.php nuovo file: phpcs.xml
Diffstat (limited to 'phpcs.xml')
-rw-r--r--phpcs.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/phpcs.xml b/phpcs.xml
new file mode 100644
index 0000000..9e19d6e
--- /dev/null
+++ b/phpcs.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0"?>
+<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="dagreynix" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd">
+ <description>danix Wordpress Coding Standards</description>
+
+ <!-- Scan all files in directory -->
+ <file>.</file>
+
+ <!-- Scan only PHP files -->
+ <arg name="extensions" value="php"/>
+
+ <!-- Show colors in console -->
+ <arg value="-colors"/>
+
+ <!-- Show sniff codes in all reports -->
+ <arg value="ns"/>
+
+ <!-- Include the WordPress-Extra standard. -->
+ <rule ref="WordPress-Extra">
+ <!-- Exclude any rules here -->
+ <exclude name="WordPress.PHP.DisallowShortTernary"/>
+ </rule>
+
+ <!-- Let's also check that everything is properly documented. -->
+ <!-- <rule ref="WordPress-Docs"/> -->
+
+ <!-- Add in some extra rules from other standards. -->
+ <rule ref="Generic.CodeAnalysis.UnusedFunctionParameter"/>
+ <rule ref="Generic.Commenting.Todo"/>
+
+ <config name="minimum_supported_wp_version" value="4.9"/>
+</ruleset> \ No newline at end of file