@pyreon/lint 0.11.9 → 0.11.10

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pyreon/lint",
3
- "version": "0.11.9",
3
+ "version": "0.11.10",
4
4
  "description": "Pyreon-specific linter — 56 rules for signals, JSX, SSR, performance, router, and architecture",
5
5
  "homepage": "https://github.com/pyreon/pyreon/tree/main/packages/lint#readme",
6
6
  "bugs": {
package/src/watcher.ts CHANGED
@@ -41,7 +41,7 @@ export function watchAndLint(options: LintOptions & { format: string }): void {
41
41
  // Debounce map: filePath -> timeout
42
42
  const pending = new Map<string, ReturnType<typeof setTimeout>>()
43
43
 
44
- // eslint-disable-next-line no-console
44
+ // oxlint-disable-next-line no-console
45
45
  console.log(`\x1b[2m[pyreon-lint] Watching for changes...\x1b[0m\n`)
46
46
 
47
47
  for (const p of options.paths) {