chore: Don’t scope prettier write command to src/app only

This commit is contained in:
Florian Zia 2024-03-14 13:25:43 +01:00
Родитель 590fd18d0d
Коммит 7e21a25b5d
Не найден ключ, соответствующий данной подписи
1 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -1,15 +1,12 @@
import * as path from 'path';
import * as path from "path";
const buildEslintCommand = (filenames) =>
`next lint --fix --file ${filenames
.map((f) => path.relative(process.cwd(), f))
.join(' --file ')}`;
.join(" --file ")}`;
export default {
"*.{js,cjs,mjs,jsx,ts,tsx}": [buildEslintCommand],
"*.{scss,css}": "stylelint --allow-empty-input --fix",
"*.{ts,tsx,jsx,cjs,mjs,scss,css,md,html}": "prettier --write",
// TODO NEXT.JS MIGRATION: While we're migrating to Next.js, regular .js files files
// are still likely to be the non-Next.js app. Thus, we scope those to /src/app:
"src/app/**/*.js": "prettier --write",
};