Barazo default frontend
barazo.forum
1/**
2 * Lint-staged configuration
3 * @see https://github.com/lint-staged/lint-staged
4 */
5export default {
6 '*.{ts,tsx}': ['prettier --write', 'eslint --fix'],
7 '*.{js,jsx,mjs,cjs}': ['prettier --write', 'eslint --fix'],
8 '*.{json,md,mdx,yml,yaml}': ['prettier --write'],
9 '*.{css,scss}': ['prettier --write'],
10}