Refine lint-staged configuration
[benchmarks-js.git] / .lintstagedrc.js
CommitLineData
51c84d4b 1module.exports = {
31688ebd
JB
2 '*.{js,jsx,mjs,cjs}': [
3 'prettier --write',
4 'standard --fix',
5 'eslint --cache --fix'
6 ],
51c84d4b
JB
7 '*.{json,md,yml,yaml}': ['prettier --write']
8}