mirror of
https://github.com/symfony/symfony-docs.git
synced 2026-03-24 00:32:14 +01:00
20 lines
523 B
ReStructuredText
20 lines
523 B
ReStructuredText
.. index::
|
|
single: Templating; Linting
|
|
single: Twig; Linting
|
|
single: Templating; Syntax Check
|
|
single: Twig; Syntax Check
|
|
|
|
How to Check the Syntax of Your Twig Templates
|
|
==============================================
|
|
|
|
You can check for syntax errors in Twig templates using the ``lint:twig``
|
|
console command:
|
|
|
|
.. code-block:: terminal
|
|
|
|
# You can check by filename:
|
|
$ php bin/console lint:twig templates/article/recent_list.html.twig
|
|
|
|
# or by directory:
|
|
$ php bin/console lint:twig templates/
|