5
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2025-11-07 16:06:56 +00:00

chore: fix invalid lintstaged configuration

This commit is contained in:
Jeroen de Bruijn 2021-02-24 21:15:54 +01:00
parent 8752887edd
commit a993b377d6
No known key found for this signature in database
GPG key ID: 94DD99A281A21364

View file

@ -1,5 +1,5 @@
module.exports = {
'*.{ts,tsx,vue,css,less,scss,html,htm,md,markdown}': 'prettier --write',
'*.{json,yml,yaml}': ['prettier --write', () => 'npm run test'],
'*.{js,jsx}': ['eslint --fix', () => 'npm run test']],
'*.{js,jsx}': ['eslint --fix', () => 'npm run test'],
}