File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ PHPCSFIXER?=$(EXEC) php -d memory_limit=1024m vendor/bin/php-cs-fixer
7
7
.PHONY : help start stop restart install uninstall reset clear-cache tty clear clean
8
8
.PHONY : db-diff db-migrate db-rollback db-reset db-validate wait-for-db
9
9
.PHONY : watch assets assets-build
10
- .PHONY : tests lint lint-symfony lint-yaml lint-twig php-cs php-cs-fix security-check test-schema test-all
10
+ .PHONY : tests lint lint-symfony lint-yaml lint-twig lint-twig php-cs php-cs-fix security-check test-schema test-all
11
11
.PHONY : deps
12
12
.PHONY : build up perm
13
13
.PHONY : docker-compose.override.yml
@@ -103,14 +103,17 @@ tests:
103
103
104
104
lint : lint-symfony php-cs # # Run lint on Twig, YAML, PHP and Javascript files
105
105
106
- lint-symfony : lint-yaml lint-twig # # Lint Symfony (Twig and YAML) files
106
+ lint-symfony : lint-yaml lint-twig lint-xliff # # Lint Symfony (Twig and YAML) files
107
107
108
108
lint-yaml : # # Lint YAML files
109
109
$(EXEC ) $(CONSOLE ) lint:yaml config
110
110
111
111
lint-twig : # # Lint Twig files
112
112
$(EXEC ) $(CONSOLE ) lint:twig templates
113
113
114
+ lint-xliff : # # Lint Translation files
115
+ $(EXEC ) $(CONSOLE ) lint:xliff translations
116
+
114
117
php-cs : vendor # # Lint PHP code
115
118
$(PHPCSFIXER ) fix --diff --dry-run --no-interaction -v
116
119
You can’t perform that action at this time.
0 commit comments