mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
11 lines
346 B
JavaScript
11 lines
346 B
JavaScript
module.exports = {
|
|
'*.{js,jsx,mjs,ts,tsx,mts,mdx}': [
|
|
'prettier --with-node-modules --ignore-path .prettierignore --write',
|
|
'eslint --config eslint.config.mjs --fix',
|
|
],
|
|
'*.{json,md,css,html,yml,yaml,scss}': [
|
|
'prettier --with-node-modules --ignore-path .prettierignore --write',
|
|
],
|
|
'*.rs': ['rustfmt --edition 2024 --'],
|
|
}
|