shopsys/coding-standards
最新稳定版本:v18.0.0
Composer 安装命令:
composer require shopsys/coding-standards
包简介
Coding standards definition compatible with PSR-2
README 文档
README
Shopsys Coding Standards are based on PSR-2.
This project bundles tools along with predefined rulesets for automated checks of Shopsys Coding Standards that we use in many Shopsys projects. The repository also contains few custom rules.
This repository is maintained by shopsys/shopsys monorepo, information about changes is in its CHANGELOG file.
Provided tools:
- PHP-Parallel-Lint
- EasyCodingStandard that combines PHP-CS-Fixer and PHP_CodeSniffer
For further information see official documentation of those tools.
Installation
php composer require shopsys/coding-standards
Usage
Create ecs.php config file in your project which includes predefined ruleset.
You can take the config from the project-base repository as an inspiration.
You can also customize the rules and even add your own sniffs and fixers in the config.
In terminal, run following commands:
php vendor/bin/parallel-lint /path/to/project php vendor/bin/ecs check /path/to/project --config=/path/to/project/custom-coding-standard.yml
Custom rules
Rules for PHP-CS-Fixer
Shopsys/missing_button_type
All <button> HTML tags in .html and .html.twig files must have explicit type attribute.
If the type is not specified it will be fixed to type="button"" because the implicit value is submit which makes it behave differently based on the context (<button> inside <form> element submits the form).
Shopsys/orm_join_column_require_nullable
Doctrine annotations @ORM\ManyToOne and @ORM\OneToOne must have nullable option defined explicitly in @ORM\JoinColumn.
If the nullable option is not specified it will be fixed to nullable=false because the implicit value is true but this is the opposite to the implicit value of nullable for @Column annotation.
This makes it consistent.
Rules for PHP_CodeSniffer
ForbiddenExitSniff
Function exit() is not allowed.
ForbiddenSuperGlobalSniff
Usage of superglobals ($_COOKIE, $_GET, $_FILES, $_POST, $_REQUEST, $_SERVER) is not allowed.
ObjectIsCreatedByFactorySniff
Instantiation of objects that can be created by their factories is not allowed outside of the factory.
ValidVariableNameSniff
Default \PHP_CodeSniffer\Standards\Squiz\Sniffs\NamingConventions\ValidVariableNameSniff
does not report method parameters in $_var format as an violation but it should.
It also skips checking of private members when PrivateNoUnderscore property is disabled.
This sniff provides the missing functionality and is intended to be used as an addition to the default ValidVariableNameSniff.
Contributing
Thank you for your contributions to Shopsys Coding Standards package. Together we are making Shopsys Platform better.
This repository is READ-ONLY. If you want to report issues and/or send pull requests, please use the main Shopsys repository.
Please check our Contribution Guide before contributing.
Support
What to do when you are in troubles or need some help? The best way is to join our Slack.
If you want to report issues, please use the main Shopsys repository.
统计信息
- 总下载量: 258.39k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 20
- 点击次数: 1
- 依赖项目数: 13
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-14