-
-
Save tommcfarlin/c75e37f2ca15035013477c77ac3a18a6 to your computer and use it in GitHub Desktop.
[WordPress] WordPress Widgets: Getting Started with Standards
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "wordpress-widget-boilerplate/wordpress-widget-boilerplate", | |
"description": "An organized, maintainable boilerplate for building widgets using WordPress best practices.", | |
"type": "wordpress-plugin", | |
"license": "GPL-3.0-or-later", | |
"homepage": "https://github.com/tommcfarlin/WordPress-Widget-Boilerplate", | |
"authors": [ | |
{ | |
"name": "Tom McFarlin", | |
"email": "tom@pressware.co", | |
"homepage": "https://pressware.co" | |
} | |
], | |
"support": { | |
"issues": "https://github.com/tommcfarlin/WordPress-Widget-Boilerplate/issues" | |
}, | |
"config": { | |
"preferred-install": "dist", | |
"platform": { | |
"php": "7.1" | |
} | |
}, | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "https://wpackagist.org" | |
} | |
], | |
"require": { | |
"php": "7.1", | |
"composer/installers": "^1.4" | |
}, | |
"require-dev": { | |
"friendsofphp/php-cs-fixer": "^2.13.1", | |
"jakub-onderka/php-parallel-lint": "^1.0.0", | |
"phpmd/phpmd": "^v2.6.0", | |
"nikic/php-parser": "^4.0", | |
"ocramius/proxy-manager": "^2.0.0", | |
"phpro/grumphp": "^0.13.1" | |
}, | |
"scripts": { | |
"test": [ | |
"./vendor/bin/grumphp run" | |
] | |
}, | |
"minimum-stability": "stable" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.DS_Store | |
*.log | |
wp-config.php | |
wp-content/advanced-cache.php | |
wp-content/backup-db/ | |
wp-content/backups/ | |
wp-content/blogs.dir/ | |
wp-content/cache/ | |
wp-content/upgrade/ | |
wp-content/uploads/ | |
wp-content/mu-plugins/ | |
wp-content/wp-cache-config.php | |
wp-content/plugins/hello.php | |
/.htaccess | |
/license.txt | |
/readme.html | |
/sitemap.xml | |
/sitemap.xml.gz | |
vendor/ | |
composer.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: | |
git_dir: .git | |
bin_dir: vendor/bin | |
process_timeout: 120 | |
tasks: | |
securitychecker: | |
composer: | |
jsonlint: | |
xmllint: | |
yamllint: | |
phplint: | |
exclude: | |
- vendor/ | |
phpcs: | |
metadata: | |
priority: 200 | |
phpcsfixer2: | |
allow_risky: true | |
config: '.php_cs.dist' | |
metadata: | |
priority: 300 | |
phpparser: | |
visitors: | |
forbidden_function_calls: | |
blacklist: | |
- "exit" | |
- "var_dump" | |
phpversion: | |
project: '7.1' | |
phpmd: | |
exclude: ['vendor'] | |
ruleset: ['phpmd.xml'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$header = <<<'EOF' | |
This file is part of the WordPress Widget Boilerplate | |
(c) Tom McFarlin <tom@tommcfarlin.com> | |
This source file is subject to the GPL license that is bundled | |
with this source code in the file LICENSE. | |
EOF; | |
return PhpCsFixer\Config::create() | |
->setRiskyAllowed(true) | |
->setRules([ | |
'@PHP56Migration' => true, | |
'@Symfony' => true, | |
'@Symfony:risky' => true, | |
'align_multiline_comment' => true, | |
'array_syntax' => ['syntax' => 'short'], | |
'blank_line_before_statement' => true, | |
'combine_consecutive_issets' => true, | |
'combine_consecutive_unsets' => true, | |
// one should use PHPUnit methods to set up expected exception instead of annotations | |
'general_phpdoc_annotation_remove' => ['annotations' => ['expectedException', 'expectedExceptionMessage', 'expectedExceptionMessageRegExp']], | |
'header_comment' => ['header' => $header], | |
'heredoc_to_nowdoc' => true, | |
'list_syntax' => ['syntax' => 'long'], | |
'method_argument_space' => ['ensure_fully_multiline' => true], | |
'method_chaining_indentation' => false, | |
'no_extra_consecutive_blank_lines' => ['tokens' => ['break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block']], | |
'no_null_property_initialization' => true, | |
'no_short_echo_tag' => true, | |
'no_unneeded_curly_braces' => true, | |
'no_unneeded_final_method' => true, | |
'no_unreachable_default_argument_value' => true, | |
'no_useless_else' => true, | |
'no_useless_return' => true, | |
'ordered_class_elements' => true, | |
'ordered_imports' => true, | |
'php_unit_construct' => true, | |
'php_unit_test_class_requires_covers' => true, | |
'php_unit_dedicate_assert' => true, | |
'phpdoc_add_missing_param_annotation' => true, | |
'phpdoc_order' => true, | |
'phpdoc_types_order' => ['null_adjustment' => 'always_last'], | |
'semicolon_after_instruction' => true, | |
'single_line_comment_style' => true, | |
'visibility_required' => ['const', 'property', 'method'], | |
'yoda_style' => true, | |
]) | |
->setFinder( | |
PhpCsFixer\Finder::create() | |
->exclude(__DIR__ . '/vendor/*') | |
->in([ | |
__DIR__ . '/src' | |
]) | |
) | |
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<ruleset name="Pressware"> | |
<description>Pressware, LLC Coding Standards</description> | |
<!-- Scan all files in directory --> | |
<file>./src</file> | |
<file>./tests</file> | |
<exclude-pattern>./tests/phpunit/*</exclude-pattern> | |
<!-- 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"/> | |
<!-- Use PSR-2 as a base --> | |
<rule ref="PSR2"/> | |
<rule ref="Generic.Arrays.DisallowLongArraySyntax.Found" /> | |
<!-- Force 2 spaces indentation --> | |
<rule ref="Generic.WhiteSpace.ScopeIndent"> | |
<properties> | |
<property name="indent" value="4"/> | |
<property name="tabIndent" value="false"/> | |
</properties> | |
</rule> | |
</ruleset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<ruleset | |
name="VersionEyeModule rules" | |
xmlns="http://pmd.sf.net/ruleset/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd" | |
xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd" | |
> | |
<rule ref="rulesets/cleancode.xml" /> | |
<rule ref="rulesets/codesize.xml" /> | |
<rule ref="rulesets/controversial.xml" /> | |
<rule ref="rulesets/design.xml" /> | |
<rule ref="rulesets/unusedcode.xml" /> | |
<rule ref="rulesets/naming.xml"> | |
<exclude name="ShortVariable"/> | |
</rule> | |
<rule ref="rulesets/naming.xml/ShortVariable" | |
since="0.2" | |
message="Avoid variables with short names like {0}. Configured minimum length is {1}." | |
class="PHPMD\Rule\Naming\ShortVariable" | |
externalInfoUrl="http://phpmd.org/rules/naming.html#shortvariable"> | |
<priority>3</priority> | |
<properties> | |
<property name="minimum" description="Minimum length for a variable, property or parameter name" value="3"/> | |
<property name="exceptions" value="id,q,w,i,j,v,e,f,fp" /> | |
</properties> | |
</rule> | |
</ruleset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment