2 Star 5 Fork 1

Haiwera / magento2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.php_cs 1.59 KB
一键复制 编辑 原始数据 按行查看 历史
<?php
/**
* Copyright © 2013-2017 Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Pre-commit hook installation:
* vendor/bin/static-review.php hook:install dev/tools/Magento/Tools/StaticReview/pre-commit .git/hooks/pre-commit
*/
$finder = Symfony\CS\Finder\DefaultFinder::create()
->name('*.phtml')
->exclude('dev/tests/functional/generated')
->exclude('dev/tests/functional/var')
->exclude('dev/tests/functional/vendor')
->exclude('dev/tests/integration/tmp')
->exclude('dev/tests/integration/var')
->exclude('lib/internal/Cm')
->exclude('lib/internal/Credis')
->exclude('lib/internal/Less')
->exclude('lib/internal/LinLibertineFont')
->exclude('pub/media')
->exclude('pub/static')
->exclude('setup/vendor')
->exclude('var');
return Symfony\CS\Config\Config::create()
->finder($finder)
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->fixers([
'double_arrow_multiline_whitespaces',
'duplicate_semicolon',
'extra_empty_lines',
'include',
'join_function',
'namespace_no_leading_whitespace',
'new_with_braces',
'object_operator',
'operators_spaces',
'remove_leading_slash_use',
'remove_lines_between_uses',
'single_array_no_trailing_comma',
'spaces_before_semicolon',
'standardize_not_equal',
'ternary_spaces',
'unused_use',
'whitespacy_lines',
'concat_with_spaces',
'multiline_spaces_before_semicolon',
'ordered_use',
'short_array_syntax',
]);
PHP
1
https://gitee.com/Haiwera/magento2.git
git@gitee.com:Haiwera/magento2.git
Haiwera
magento2
magento2
2.0

搜索帮助