Files
suwayomi-material-you-webui/lint-staged.config.js

14 lines
516 B
JavaScript
Raw Normal View History

2026-04-25 12:46:08 +02:00
/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
export default {
2026-04-25 12:46:48 +02:00
'*.{ts,tsx,js,jsx}': ['oxfmt --write', 'oxlint --fix', () => `yarn i18n:extract`, 'git add src/i18n/locales/*.po'],
2026-04-25 12:46:08 +02:00
'*.{json,md,yml,yaml,css,scss,html,graphql}': 'oxfmt --write',
2026-04-25 13:01:31 +02:00
'*.{ts,tsx,json}': () => 'yarn tsc',
2026-04-25 12:46:08 +02:00
};