dxw / whippet-theme-template

This repo holds the template for a Whippet-enabled theme.
2 stars 1 forks source link

Add a .php_cs file #47

Closed mallorydxw closed 8 years ago

mallorydxw commented 8 years ago
<?php
return \Symfony\CS\Config\Config::create()
->level(\Symfony\CS\FixerInterface::PSR2_LEVEL)
->finder(
    \Symfony\CS\Finder\DefaultFinder::create()
    ->exclude('vendor')
    ->exclude('bower_components')
    ->exclude('node_modules')
    ->exclude('assets')
    ->exclude('templates')
    ->exclude('lib')
    ->in(__DIR__)
);
mallorydxw commented 8 years ago

Done as part of #48.