Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
41 lines
2.6 KiB
TypeScript
41 lines
2.6 KiB
TypeScript
import { NoJsonParseJsonStringifyRule } from './no-json-parse-json-stringify.js';
|
|
import { NoUncaughtJsonParseRule } from './no-uncaught-json-parse.js';
|
|
import { NoUnneededBackticksRule } from './no-unneeded-backticks.js';
|
|
import { NoUnusedParamInCatchClauseRule } from './no-unused-param-catch-clause.js';
|
|
import { NoUselessCatchThrowRule } from './no-useless-catch-throw.js';
|
|
import { NoSkippedTestsRule } from './no-skipped-tests.js';
|
|
import { NoInterpolationInRegularStringRule } from './no-interpolation-in-regular-string.js';
|
|
import { NoPlainErrorsRule } from './no-plain-errors.js';
|
|
import { NoDynamicImportTemplateRule } from './no-dynamic-import-template.js';
|
|
import { MisplacedN8nTypeormImportRule } from './misplaced-n8n-typeorm-import.js';
|
|
import { NoTypeUnsafeEventEmitterRule } from './no-type-unsafe-event-emitter.js';
|
|
import { NoUntypedConfigClassFieldRule } from './no-untyped-config-class-field.js';
|
|
import { NoTopLevelRelativeImportsInBackendModuleRule } from './no-top-level-relative-imports-in-backend-module.js';
|
|
import { NoConstructorInBackendModuleRule } from './no-constructor-in-backend-module.js';
|
|
import type { AnyRuleModule } from '@typescript-eslint/utils/ts-eslint';
|
|
import { NoArgumentSpreadRule } from './no-argument-spread.js';
|
|
import { NoInternalPackageImportRule } from './no-internal-package-import.js';
|
|
import { NoImportEnterpriseEditionRule } from './no-import-enterprise-edition.js';
|
|
import { NoTypeOnlyImportInDiRule } from './no-type-only-import-in-di.js';
|
|
|
|
export const rules = {
|
|
'no-uncaught-json-parse': NoUncaughtJsonParseRule,
|
|
'no-json-parse-json-stringify': NoJsonParseJsonStringifyRule,
|
|
'no-unneeded-backticks': NoUnneededBackticksRule,
|
|
'no-unused-param-in-catch-clause': NoUnusedParamInCatchClauseRule,
|
|
'no-useless-catch-throw': NoUselessCatchThrowRule,
|
|
'no-skipped-tests': NoSkippedTestsRule,
|
|
'no-interpolation-in-regular-string': NoInterpolationInRegularStringRule,
|
|
'no-plain-errors': NoPlainErrorsRule,
|
|
'no-dynamic-import-template': NoDynamicImportTemplateRule,
|
|
'misplaced-n8n-typeorm-import': MisplacedN8nTypeormImportRule,
|
|
'no-type-unsafe-event-emitter': NoTypeUnsafeEventEmitterRule,
|
|
'no-untyped-config-class-field': NoUntypedConfigClassFieldRule,
|
|
'no-top-level-relative-imports-in-backend-module': NoTopLevelRelativeImportsInBackendModuleRule,
|
|
'no-constructor-in-backend-module': NoConstructorInBackendModuleRule,
|
|
'no-argument-spread': NoArgumentSpreadRule,
|
|
'no-internal-package-import': NoInternalPackageImportRule,
|
|
'no-import-enterprise-edition': NoImportEnterpriseEditionRule,
|
|
'no-type-only-import-in-di': NoTypeOnlyImportInDiRule,
|
|
} satisfies Record<string, AnyRuleModule>;
|