mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-07 12:16:14 +00:00
8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
const config = {
|
|
'*': 'prettier --ignore-unknown --write',
|
|
'*.{js,ts}': 'eslint --fix',
|
|
'**/*.ts': () => 'tsc -p tsconfig.json --noEmit',
|
|
};
|
|
|
|
export default config;
|