export const additionalRules: (import("eslint").Linter.Config< // @ts-ignore import("@eslint/core", { with: { "resolution-mode": "require" } }).RulesConfig> | { name: string; rules: { 'func-style': ["warn", string, { allowArrowFunctions: boolean; }]; 'no-console': "warn"; 'no-constant-binary-expression': "error"; 'no-unsafe-optional-chaining': ["error", { disallowArithmeticOperators: boolean; }]; 'no-warning-comments': ["warn", { terms: string[]; }]; 'object-shorthand': ["error", string, { avoidQuotes: boolean; }]; '@stylistic/quote-props': ["error", string, { keywords: boolean; numbers: boolean; unnecessary: boolean; }]; }; } | { name: string; plugins: { 'es-x': any; 'sort-destructure-keys': any; }; rules: { 'security/detect-object-injection': "off"; 'security/detect-unsafe-regex': "off"; 'es-x/no-exponential-operators': "warn"; 'promise/prefer-await-to-then': "error"; 'sort-destructure-keys/sort-destructure-keys': "error"; }; })[]; //# sourceMappingURL=additional-rules.d.ts.map