Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 983 Bytes

twigcsfixer.md

File metadata and controls

37 lines (25 loc) · 983 Bytes

Twig CS Fixer

Check and fix Twig coding standard using VincentLanglet/Twig-CS-Fixer. You can check config file here.

Composer

composer require --dev "vincentlanglet/twig-cs-fixer:>=2"

Config

The task lives under the twigcsfixer namespace and has following configurable parameters:

# grumphp.yml
grumphp:
    tasks:
        twigcsfixer:
            path: '.'
            triggered_by: ['twig']

path

Default: null

By default . (current folder) will be used. On precommit the path will not be used, changed files will be passed as arguments instead. You can specify an alternate location by changing this option. If the path doesn't exist or is not accessible an exception will be thrown.

triggered_by

Default: [twig]

This option will specify which file extensions will trigger this task.