"lint":"eslint $(for appdir in $(ls apps); do if ! $(git check-ignore -q \"apps/$appdir\"); then printf \"apps/$appdir \"; fi; done) core --no-error-on-unmatched-pattern",
"lint:fix":"npm run lint -- --fix",
"stylelint":"stylelint $(for appdir in $(ls apps); do if ! $(git check-ignore -q \"apps/$appdir\"); then printf \"'apps/$appdir/**/*.{scss,vue}' \"; fi; done) 'core/**/*.{scss,vue}'",
"stylelint:fix":"npm run stylelint -- --fix",
"test":"vitest run",
"test:watch":"vitest watch",
"test:coverage":"vitest run --coverage --reporter=default --reporter=junit --outputFile=test-report.junit.xml",