graphql-engine/frontend/.lintstagedrc.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
184 B
JavaScript
Raw Normal View History

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