mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-06 02:01:58 +02:00
6 lines
230 B
JavaScript
6 lines
230 B
JavaScript
export default {
|
|
'**/*.{ts,tsx}': () => 'tsc -p tsconfig.json --noEmit',
|
|
'src/**/*.{js,jsx,ts,tsx}': 'eslint --max-warnings=0 --no-warn-ignored --cache --fix',
|
|
'**/*.{js,jsx,ts,tsx,css,scss,md,json}': 'prettier --write',
|
|
};
|