You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* jshint esversion: 9 */ |
|
|
|
module.exports = { |
|
'*.{js,ts,json,svelte}': ['npm run format', 'git add'], |
|
'./src/**/*.{svelte,ts}': ['npm run format', 'git add', 'npm run lint:fix'], |
|
'./.{ts,cjs,js}': ['npm run lint:fix'], |
|
};
|
|
|