1 Star 0 Fork 2

artrogue/influxdb-orm

forked from 宇润/influxdb-orm 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.php_cs.dist 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
宇润 提交于 2021-07-22 13:33 . 引入代码检测和格式化
<?php
if (!file_exists(__DIR__ . '/src'))
{
exit(0);
}
return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'php_unit_dedicate_assert' => ['target' => '5.6'],
'array_syntax' => ['syntax' => 'short'],
'array_indentation' => true,
'binary_operator_spaces' => [
'operators' => [
'=>' => 'align_single_space',
],
],
'concat_space' => [
'spacing' => 'one',
],
'fopen_flags' => false,
'protected_to_private' => false,
'native_constant_invocation' => true,
'combine_nested_dirname' => true,
'single_quote' => true,
'braces' => [
'position_after_control_structures' => 'next',
],
'single_line_comment_style' => false,
'phpdoc_to_comment' => false,
'backtick_to_shell_exec' => false,
])
->setRiskyAllowed(true)
->setFinder(
PhpCsFixer\Finder::create()
->exclude(__DIR__ . '/vendor')
->in(__DIR__ . '/example')
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests')
->append([__FILE__])
)
;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/artrogue/influxdb-orm.git
git@gitee.com:artrogue/influxdb-orm.git
artrogue
influxdb-orm
influxdb-orm
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385