ultracite 5.0.31 → 5.0.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/biome.jsonc +2 -2
  2. package/package.json +1 -1
package/biome.jsonc CHANGED
@@ -502,13 +502,13 @@
502
502
  // Promotes the use of export type for types.
503
503
  "useExportType": "error",
504
504
  // Enforce naming conventions for JavaScript and TypeScript filenames.
505
- // Supports TanStack Router convention: allows - prefixed files (e.g., -hooks.ts, -components.tsx)
505
+ // Supports TanStack Router convention: allows - prefixed files (e.g., -hooks.ts, $slug)
506
506
  "useFilenamingConvention": {
507
507
  "level": "error",
508
508
  "options": {
509
509
  "requireAscii": true,
510
510
  "filenameCases": ["kebab-case"],
511
- "match": "[-?%]?(.+?)[.](.+)"
511
+ "match": "[\\-$]?(.+?)[.](.+)"
512
512
  }
513
513
  },
514
514
  // This rule recommends a for-of loop when in a for loop, the index used to extract an item from the iterated array.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ultracite",
3
3
  "description": "The AI-ready formatter that helps you write and generate code faster.",
4
- "version": "5.0.31",
4
+ "version": "5.0.33",
5
5
  "bin": {
6
6
  "ultracite": "dist/index.js"
7
7
  },