Skip to content

Commit

Permalink
[TASK] Add dedicated "composer:lint" Composer commmand
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrodala committed Apr 22, 2024
1 parent 85a192c commit 0542f21
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,15 @@
"scripts": {
"build": [
"@composer require --no-progress --ansi --update-with-dependencies typo3/cms-core $TYPO3_VERSION",
"@composer validate --ansi",
"@composer normalize --no-update-lock --dry-run",
"@lint",
"@test"
],
"composer:lint": [
"@composer validate --ansi",
"@composer normalize --no-update-lock --dry-run"
],
"lint": [
"@composer:lint",
"@php:syntax:lint",
"@php:style:lint",
"@php:static:lint",
Expand Down

0 comments on commit 0542f21

Please sign in to comment.