mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
|
// .lintstagedrc.js
|
||
|
export default {
|
||
|
'*.{js,jsx,ts,tsx,json}': filenames =>
|
||
|
'nx affected --target=lint --fix --parallel=3',
|
||
|
'*': fileNames => 'nx format:write --base=main',
|
||
|
};
|