parsedown/.php-cs-fixer.dist.php

38 lines
877 B
PHP
Raw Normal View History

2018-12-04 17:24:25 +01:00
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$finder = Finder::create()
->in(__DIR__ . '/src/')
->in(__DIR__ . '/tests/')
;
$rules = [
'@PSR2' => true,
'array_syntax' => [
'syntax' => 'short',
],
'braces' => [
'allow_single_line_closure' => true,
],
2019-01-26 15:51:05 +01:00
'logical_operators' => true,
2018-12-04 17:24:25 +01:00
'native_constant_invocation' => [
'fix_built_in' => true,
],
'native_function_invocation' => [
'include' => ['@all'],
],
'no_unused_imports' => true,
'ordered_imports' => [
'sort_algorithm' => 'alpha',
],
'single_blank_line_before_namespace' => true,
2018-12-04 17:24:25 +01:00
'strict_comparison' => true,
'strict_param' => true,
'whitespace_after_comma_in_array' => true,
2018-12-04 17:24:25 +01:00
];
2021-10-16 01:45:18 +02:00
return (new Config)
2018-12-04 17:24:25 +01:00
->setRules($rules)
->setFinder($finder)
->setUsingCache(false)
->setRiskyAllowed(true)
2021-10-16 01:45:18 +02:00
;