extcode / cart

Cart is a small but powerful extension which "solely" adds a shopping cart to your TYPO3 installation. The extension allows you to create coupons, products with or without variants, special prices.
GNU General Public License v2.0
57 stars 51 forks source link

[BUGFIX] Remove falsy path in phplint config #549

Closed rintisch closed 1 month ago

rintisch commented 4 months ago

Setting the path to path: ./../ gets wrong results as it make the linter running in the parent directory of the extensoin. Simply removing works when running it with the composer command.

Note: phplint is not used by the CI!

extcode commented 1 month ago

I would suggest to remove the phplint command, because it is only used in the composer script section and replace the linting in the script with php -l as in gitlab ci or github action configuration.

extcode commented 1 month ago

I removed phplint in f141db0 and use the php -l linting like I do in the Pipelines.