mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-08 14:51:00 +00:00
33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return (new PhpCsFixer\Config())
|
|
->setFinder(PhpCsFixer\Finder::create()->in(__DIR__ . '/..'))
|
|
->setCacheFile(__DIR__ . '/php-cs-fixer.cache')
|
|
->setRiskyAllowed(true)
|
|
// https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/master/doc/rules/index.rst
|
|
->setRules(
|
|
[
|
|
// Array
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
// Function Notation
|
|
'native_function_invocation' => ['exclude' => [], 'include' => [], 'scope' => 'all', 'strict' => true],
|
|
// Import
|
|
'fully_qualified_strict_types' => true,
|
|
'global_namespace_import' => ['import_constants' => false, 'import_functions' => false, 'import_classes' => false],
|
|
'no_leading_import_slash' => true,
|
|
'no_unused_imports' => true,
|
|
'ordered_imports' => ['sort_algorithm' => 'alpha', 'imports_order' => ['class', 'const', 'function']],
|
|
'single_import_per_statement' => true,
|
|
'single_line_after_imports' => true,
|
|
// PHPDoc
|
|
'no_superfluous_phpdoc_tags' => true,
|
|
'phpdoc_trim_consecutive_blank_line_separation' => true,
|
|
'phpdoc_trim' => true,
|
|
|
|
'@PHP81Migration' => true,
|
|
'@PHP80Migration:risky' => true,
|
|
]
|
|
);
|