Files
Nimbus/lint-staged.config.js
2025-10-13 21:35:00 -06:00

15 lines
398 B
JavaScript

// INFO: This file does not work as a .ts on Windows as of 2025-06-20
/**
* @type {import('lint-staged').Configuration}
*/
const config = {
// Lint and fix TypeScript and JavaScript files
"**/*.{ts,tsx,js,jsx}": ["oxlint --fix", "prettier --write --list-different"],
// Format JSON and YAML files
"**/*.{json,md,yml,yaml}": ["prettier --write --list-different"],
};
export default config;