12 lines
335 B
JavaScript
12 lines
335 B
JavaScript
const path = require('path');
|
|
|
|
const buildEslintCommand = (filenames) =>
|
|
`next lint --fix --file ${filenames
|
|
.map((f) => path.relative(process.cwd(), f))
|
|
.join(' --file ')}`;
|
|
|
|
module.exports = {
|
|
'*.{js,jsx,ts,tsx}': [buildEslintCommand, 'prettier --write'],
|
|
'*.{json,md,css,scss}': ['prettier --write'],
|
|
};
|