nelson6e65/code-sniffer-helpers
Composer 安装命令:
composer require nelson6e65/code-sniffer-helpers
包简介
Helpers for PHP Code Sniffer
README 文档
README
Helpers for PHP Code Sniffer.
Installation
composer require --dev nelson6e65/code-sniffer-helpers
Features
Composer scripts
phpcbf for lint-staged
A wrapper to fix your staged code (or argumented files/folders) using the PHP Code Sniffer auto-fixer.
There is a bug that does not allows you to use it directly as autofixer (squizlabs/PHP_CodeSniffer#1818). There is a workarround for using it as a composer script, but does not works for using it in a lint-staged pre-commit hook.
This helper is designed to be run with lint-staged, but you can also use it directly in your composer script.
Setup with lint-staged
Add the script to your composer.json:
{
"scripts": {
"cs:fix-filtered": ["NelsonMartell\\PhpCodeSniffer\\ComposerScripts::phpcbf"]
}
}
I used
"cs:fix-filtered"name, but you can use any script name you like.
Configure your Husky + lint-staged in your package.json
{
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.php": "composer cs:fix-filtered"
}
}
Example for Husky 4. Adapt it if you use Husky 5.
Usage
You can also run it directly with composer by using composer cs:fix-filtered {PATHS}. Example:
composer cs:fix-filtered src/ tests/ config/my-config-file.php
Note: Non exixtent files/directories are ignored.
Output
The output is inspired on pretty-quick output:
composer cs:fix-filtered config/ src/Example.php src/non-existent-file.php
License
Copyright (c) 2021 Nelson Martell
Read the LICENSE file for details.
nelson6e65/code-sniffer-helpers 适用场景与选型建议
nelson6e65/code-sniffer-helpers 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 13.87k 次下载、GitHub Stars 达 6, 最近一次更新时间为 2021 年 03 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 nelson6e65/code-sniffer-helpers 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 nelson6e65/code-sniffer-helpers 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 13.87k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-03-14
