temporary skip linelengthfixer

This commit is contained in:
lubiana 2024-04-25 21:01:06 +02:00
parent cfd59433a4
commit d668217619

View file

@ -91,12 +91,6 @@ return ECSConfig::configure()
'withSpaces' => 'no', 'withSpaces' => 'no',
] ]
) )
->withConfiguredRule(
LineLengthFixer::class,
[
LineLengthFixer::INLINE_SHORT_LINES => false,
]
)
->withConfiguredRule( ->withConfiguredRule(
NoExtraBlankLinesFixer::class, NoExtraBlankLinesFixer::class,
[ [
@ -112,4 +106,5 @@ return ECSConfig::configure()
FunctionToConstantFixer::class, FunctionToConstantFixer::class,
NewWithParenthesesFixer::class, NewWithParenthesesFixer::class,
NewWithBracesFixer::class, NewWithBracesFixer::class,
LineLengthFixer::class,
]); ]);