mirror of
https://github.com/nimbusdotstorage/Nimbus
synced 2026-04-22 17:45:03 +02:00
15 lines
398 B
JavaScript
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;
|