// slop-gate project fixtures — DELIBERATE violations, one per project rule.
// Read only by `slop-gate --self-test` (fixturesDirs); never in scan roots, never compiled.
import { DialogContent } from '@zync/ui'; // zync-ui-flat-import
import { Table } from '@zync/ui'; // no-zync-ui-table-primitive
import { db } from '@zync/db'; // no-raw-drizzle-route

export const colors = { accent: '#ff0044', alt: 'rgb(1, 2, 3)' }; // oklch-only

export function CanaryTable() {
  // no-html-table
  return (
    <table className="x">
      <tr>
        <td>x</td>
      </tr>
    </table>
  );
}

export function canaryNeon(sqlClient: { query: (s: string) => unknown }) {
  return sqlClient.query('select 1'); // neon-dot-query (ast)
}

export const unused = { DialogContent, Table, db };
