const escape = require('shell-quote').quote const { CLIEngine } = require('eslint') const cli = new CLIEngine({}) const isWin = process.platform === 'win32' module.exports = { '**/*.{js,jsx,ts,tsx}': (filenames) => { const escapedFileNames = filenames .map((filename) => `"${isWin ? filename : escape([filename])}"`) .join(' ') return [ `prettier --with-node-modules --ignore-path .prettierignore_staged --write ${escapedFileNames}`, `eslint --no-ignore --max-warnings=0 --fix ${filenames .filter((file) => !cli.isPathIgnored(file)) .map((f) => `"${f}"`) .join(' ')}`, ] }, '**/*.{json,md,mdx,css,html,yml,yaml,scss}': (filenames) => { const escapedFileNames = filenames .map((filename) => `"${isWin ? filename : escape([filename])}"`) .join(' ') return [ `prettier --with-node-modules --ignore-path .prettierignore_staged --write ${escapedFileNames}`, ] }, }