460 Star 1.7K Fork 652

虞灪/表单验证

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.php-cs-fixer.php 5.56 KB
一键复制 编辑 原始数据 按行查看 历史
虞灪 提交于 2024-10-13 21:31 . [U] 修改格式化配置文件
<?php
/** @noinspection PhpUndefinedNamespaceInspection */
/** @noinspection PhpUndefinedClassInspection */
$finder = PhpCsFixer\Finder::create()
->files()
->name('*.php')
->exclude('vendor')
->in(__DIR__)
->ignoreDotFiles(true)
->ignoreVCS(true);
$fixers = [
'@PSR12' => true,
'@PHP84Migration' => true,
'@Symfony' => true,
'single_quote' => true, // 简单字符串应该使用单引号代替双引号;
'no_unused_imports' => true, // 删除没用到的use
'no_singleline_whitespace_before_semicolons' => true, // 禁止只有单行空格和分号的写法;
'no_empty_statement' => true, // 多余的分号
'no_extra_blank_lines' => true, // 多余空白行
'no_blank_lines_after_phpdoc' => true, // 注释和代码中间不能有空行
'no_empty_phpdoc' => true, // 禁止空注释
'phpdoc_indent' => true, // 注释和代码的缩进相同
'no_blank_lines_after_class_opening' => true, // 类开始标签后不应该有空白行;
'include' => true, // include 和文件路径之间需要有一个空格,文件路径不需要用括号括起来;
'no_trailing_comma_in_list_call' => true, // 删除 list 语句中多余的逗号;
'no_leading_namespace_whitespace' => true, // 命名空间前面不应该有空格;
'standardize_not_equals' => true, // 使用 <> 代替 !=;
'blank_line_after_opening_tag' => true, // PHP开始标记后换行
'indentation_type' => true, // 代码必须使用配置的缩进类型
'concat_space' => [
'spacing' => 'one',
],
'space_after_semicolon' => [
'remove_in_empty_for_expressions' => true,
],
'header_comment' => [
'comment_type' => 'PHPDoc',
'header' => '',
],
'binary_operator_spaces' => [
'operators' => [
'=>' => 'align_single_space_minimal_by_scope',
'=' => 'align_single_space_minimal',
'*=' => 'align_single_space_minimal',
'+=' => 'align_single_space_minimal',
'-=' => 'align_single_space_minimal',
'/=' => 'align_single_space_minimal',
]
], // 等号对齐、数字箭头符号对齐
'whitespace_after_comma_in_array' => true, // 在数组声明中,每个逗号后面必须有一个空格。
'array_syntax' => ['syntax' => 'short'], // 使用[]来声明数组,而不是array()。
'ternary_operator_spaces' => true, // 标准化三元运算符周围的空格。
'yoda_style' => true, // 使用 Yoda 风格,变量在不可赋值的一侧,值在左侧
'normalize_index_brace' => true, // 数组索引应该一直使用方括号
'short_scalar_cast' => true, // 简写类型转化
'type_declaration_spaces' => true, // 函数和属性中,变量的类型声明应该与类型声明之间有一个空格。
'function_declaration' => true, // 函数声明必须使用空格来分隔参数。
'return_type_declaration' => true, // 函数声明中适当地使用空格。
'phpdoc_no_alias_tag' => false, // 禁止使用别名类型,这里禁用此规则以启用 phpStorm 的标签。此规则在 Symfony 中包含
'single_trait_insert_per_statement' => false, // 每个 trait 的 use 都必须作为一行语句来完成。此规则在 Symfony 中包含
'blank_line_before_statement' => false, // 任何已配置的语句之前必须有一个空换行符。此规则在 Symfony 中包含
'trailing_comma_in_multiline' => false, // 多行数组、参数列表、参数列表和匹配表达式必须以逗号结尾。此规则在 Symfony 中包含
'new_with_braces' => false, // 所有用new关键字创建的实例必须后跟大括号。此规则在 Symfony 中包含
'no_superfluous_phpdoc_tags' => false, // 删除@param、@return和@var不提供任何有用信息的标签。此规则在 Symfony 中包含
'phpdoc_summary' => false, // PHPDOC因以句号,感叹号,问号结尾。此规则在 Symfony 中包含
'phpdoc_to_comment' => false, // DocBlocks 只能用于结构元素。此规则在 Symfony 中包含
'class_attributes_separation' => [
'elements' => [
'const' => 'one',
'method' => 'one',
'property' => 'one',
'trait_import' => 'none',
'case' => 'none',
],
],
'global_namespace_import' => true, // 导入或完全限定全局类/函数/常量。,此规则在 Symfony 中被禁用
];
$config = (new PhpCsFixer\Config())
->setRules($fixers)
->setFinder($finder)
->setUsingCache(false);
$argv = $_SERVER['argv'] ?? [];
$file = $argv[2] ?? '';
if (is_dir($file)) {
return $config->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect());
}
return $config;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/yepyuyu/wm-validate.git
git@gitee.com:yepyuyu/wm-validate.git
yepyuyu
wm-validate
表单验证
6.x

搜索帮助

0d507c66 1850385 C8b1a773 1850385