mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2026-01-14 02:41:14 +01:00
7 lines
171 B
JavaScript
7 lines
171 B
JavaScript
const config = {
|
|
'*': 'prettier --ignore-unknown --write',
|
|
'*.{js,ts}': 'eslint --fix',
|
|
'**/*.ts': () => 'tsc -p tsconfig.json --noEmit',
|
|
};
|
|
|
|
export default config;
|