mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-21 06:58:47 -05:00
* Simplify ESLint config and add oxlint configuration - Switch from typescript-eslint recommended to base config - Remove redundant TypeScript-specific rules that are handled by base config - Add oxlint configuration with appropriate rules - Simplify globals configuration using globals package - Add coverage directory to ESLint ignores - Clean up various TypeScript rule configurations * Add release notes for PR #6443 * [autofix.ci] apply automated fixes * Refactor release note generator and update CLI argument parsing - Adjusted the release note generator to fix string formatting. - Refactored CLI argument parsing in migrate/cli.ts to use parseSync for improved clarity and consistency. --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
17 lines
374 B
TypeScript
17 lines
374 B
TypeScript
import '@playwright/test';
|
|
|
|
// Allow images to be imported
|
|
declare module '*.png';
|
|
|
|
declare global {
|
|
function __resetWorld(): void;
|
|
|
|
// oxlint-disable-next-line typescript/no-namespace
|
|
namespace PlaywrightTest {
|
|
// oxlint-disable-next-line typescript/consistent-type-definitions
|
|
interface Matchers<R> {
|
|
toMatchThemeScreenshots(): Promise<R>;
|
|
}
|
|
}
|
|
}
|