mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 03:25:14 +00:00
6 lines
127 B
JavaScript
6 lines
127 B
JavaScript
const config = {
|
|
'*.{js,ts}': 'eslint --fix',
|
|
'**/*.ts': () => 'tsc -p tsconfig.json --noEmit',
|
|
};
|
|
|
|
export default config;
|