dfeb4d361e
Tests fell behind source changes: lastTotpAt replay-attack prevention, activeSession invalidation on password reset, select clauses in permission updates, UNAUTHORIZED (anti-enumeration) for disabled TOTP, and password minimum raised from 8 to 12 characters. Also fix root eslint.config.mjs to ignore packages/ (linted via turbo) and add --no-warn-ignored to lint-staged to suppress warnings for ignored files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
342 B
JavaScript
19 lines
342 B
JavaScript
import baseConfig from "@capakraken/eslint-config/base";
|
|
|
|
/** @type {import("eslint").Linter.FlatConfig[]} */
|
|
export default [
|
|
...baseConfig,
|
|
{
|
|
ignores: [
|
|
"apps/**",
|
|
"packages/**",
|
|
"node_modules/**",
|
|
".claude/**",
|
|
"backups/**",
|
|
"tooling/**",
|
|
"**/dist/**",
|
|
"**/build/**",
|
|
],
|
|
},
|
|
];
|