mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 09:01:21 +00:00
7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
module.exports = {
|
|
'**/*.{js,ts,cjs,svelte,tsx}': [
|
|
() => 'tsc -p tsconfig.json --noEmit',
|
|
'eslint --fix',
|
|
'prettier --write'
|
|
]
|
|
};
|