From e6f2df52b3f5be3fcc675a3f933cf03a7bf23f34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Fri, 22 Jan 2016 00:38:40 +0200 Subject: [PATCH] add php-cs-fixer config config used to do previous commit (379feab) --- .php_cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .php_cs diff --git a/.php_cs b/.php_cs new file mode 100644 index 0000000..d1cac42 --- /dev/null +++ b/.php_cs @@ -0,0 +1,25 @@ +in(__DIR__ . '/lib') +; + +return Symfony\CS\Config\Config::create() + ->level(Symfony\CS\FixerInterface::NONE_LEVEL) + ->fixers(array( + 'linefeed', + 'trailing_spaces', + 'unused_use', + 'short_tag', + 'return', + 'visibility', + 'php_closing_tag', + 'extra_empty_lines', + 'function_declaration', + 'include', + 'controls_spaces', + 'elseif', + '-eof_ending', + )) + ->finder($finder) +;