frontend: change lint staged to only show warnings

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8598
GitOrigin-RevId: 075ef047ced13a95087b10b64584bd21c611f884
This commit is contained in:
Nicolas Beaussart 2023-04-03 12:51:54 +02:00 committed by hasura-bot
parent cb9f822fc0
commit c08dc03d72

View File

@ -1,6 +1,6 @@
// .lintstagedrc.js
export default {
'*.{js,jsx,ts,tsx,json}': filenames =>
'nx affected --target=lint --fix --parallel=3',
'nx affected --target=lint --fix --parallel=3 --quiet',
'*': fileNames => 'nx format:write --base=main',
};