network/.lintstagedrc
anonpenguin c7babf9aea Add QueryBuilder documentation and video tutorials
- Created a new documentation file for the QueryBuilder class, detailing its methods and usage examples.
- Added a comprehensive video tutorials index, covering various aspects of the Debros Network framework.
- Updated the sidebar configuration to include the new video tutorials section and reorganized the API documentation categories.
2025-07-05 06:58:55 +03:00

17 lines
269 B
Plaintext

{
"src/**/*.{js,ts}": [
"prettier --write",
"eslint --fix",
"pnpm run test:unit",
"npm run build"
],
"tests/**/*.{js,ts}": [
"prettier --write",
"eslint --fix",
"pnpm run test:unit"
],
"*.{json,md}": [
"prettier --write"
]
}