@nelsonlaidev/oxlint-config 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1294,8 +1294,42 @@ const tailwindcss = (options) => {
1294
1294
  //#region src/configs/typescript.ts
1295
1295
  const typescript = () => [{
1296
1296
  files: [GLOB_SRC],
1297
- plugins: ["typescript"],
1297
+ plugins: ["eslint", "typescript"],
1298
1298
  rules: {
1299
+ "eslint/class-methods-use-this": "error",
1300
+ "eslint/constructor-super": "off",
1301
+ "eslint/default-param-last": "error",
1302
+ "eslint/getter-return": "off",
1303
+ "eslint/no-array-constructor": "error",
1304
+ "eslint/no-class-assign": "off",
1305
+ "eslint/no-const-assign": "off",
1306
+ "eslint/no-dupe-class-members": "off",
1307
+ "eslint/no-dupe-keys": "off",
1308
+ "eslint/no-empty-function": "error",
1309
+ "eslint/no-func-assign": "off",
1310
+ "eslint/no-implied-eval": "off",
1311
+ "eslint/no-import-assign": "off",
1312
+ "eslint/no-loop-func": "error",
1313
+ "eslint/no-new-native-nonconstructor": "off",
1314
+ "eslint/no-obj-calls": "off",
1315
+ "eslint/no-redeclare": "off",
1316
+ "eslint/no-setter-return": "off",
1317
+ "eslint/no-shadow": "error",
1318
+ "eslint/no-this-before-super": "off",
1319
+ "eslint/no-throw-literal": "off",
1320
+ "eslint/no-undef": "off",
1321
+ "eslint/no-unreachable": "off",
1322
+ "eslint/no-unsafe-negation": "off",
1323
+ "eslint/no-unused-expressions": "error",
1324
+ "eslint/no-unused-vars": "error",
1325
+ "eslint/no-useless-constructor": "error",
1326
+ "eslint/no-var": "error",
1327
+ "eslint/no-with": "off",
1328
+ "eslint/prefer-const": "error",
1329
+ "eslint/prefer-promise-reject-errors": "off",
1330
+ "eslint/prefer-rest-params": "error",
1331
+ "eslint/prefer-spread": "error",
1332
+ "eslint/require-await": "off",
1299
1333
  "typescript/adjacent-overload-signatures": "error",
1300
1334
  "typescript/array-type": ["error", {
1301
1335
  default: "array-simple",
@@ -1409,7 +1443,7 @@ const typescript = () => [{
1409
1443
  }
1410
1444
  }, {
1411
1445
  files: ["**/*.d.ts"],
1412
- plugins: ["typescript"],
1446
+ plugins: ["eslint", "typescript"],
1413
1447
  rules: {
1414
1448
  "typescript/consistent-indexed-object-style": "off",
1415
1449
  "typescript/consistent-type-definitions": "off"
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../src/globs.ts","../src/configs/command.ts","../src/configs/de-morgan.ts","../src/configs/eslint.ts","../src/configs/import-sort.ts","../src/configs/imports.ts","../src/configs/jsdoc.ts","../src/configs/jsx-a11y.ts","../src/configs/nelsonlaidev.ts","../src/configs/nextjs.ts","../src/configs/node.ts","../src/configs/oxc.ts","../src/generated/plugin-snapshots.ts","../src/configs/playwright.ts","../src/configs/promise.ts","../src/utils.ts","../src/configs/react.ts","../src/configs/regexp.ts","../src/configs/sonarjs.ts","../src/configs/stylistic.ts","../src/configs/tailwindcss.ts","../src/configs/typescript.ts","../src/configs/unicorn.ts","../src/configs/vitest.ts","../src/configs/zod.ts","../src/base.ts"],"sourcesContent":["export const GLOB_SRC_EXT = '{js,jsx,ts,tsx,cjs,cts,mjs,mts}'\nexport const GLOB_SRC = `**/*.${GLOB_SRC_EXT}`\n\nexport const GLOB_JS = '**/*.{js,cjs,mjs}'\nexport const GLOB_JSX = '**/*.{jsx,cjsx,mjsx}'\n\nexport const GLOB_TS = '**/*.{ts,cts,mts}'\nexport const GLOB_TSX = '**/*.{tsx,ctsx,mtsx}'\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const command = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-command'],\n rules: {\n 'command/command': 'error',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const deMorgan = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-de-morgan'],\n rules: {\n 'de-morgan/no-negated-conjunction': 'error',\n 'de-morgan/no-negated-disjunction': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const eslint = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['eslint'],\n rules: {\n 'array-callback-return': 'error',\n 'constructor-super': 'error',\n eqeqeq: 'error',\n 'for-direction': 'error',\n 'getter-return': 'error',\n 'no-alert': 'error',\n 'no-async-promise-executor': 'error',\n 'no-await-in-loop': 'error',\n 'no-caller': 'off',\n 'no-case-declarations': 'error',\n 'no-class-assign': 'error',\n 'no-compare-neg-zero': 'error',\n 'no-cond-assign': 'error',\n 'no-const-assign': 'error',\n 'no-constant-binary-expression': 'error',\n 'no-constant-condition': 'error',\n 'no-control-regex': 'error',\n 'no-debugger': 'error',\n 'no-delete-var': 'error',\n 'no-dupe-class-members': 'error',\n 'no-dupe-else-if': 'error',\n 'no-dupe-keys': 'error',\n 'no-duplicate-case': 'error',\n 'no-empty': 'error',\n 'no-empty-character-class': 'error',\n 'no-empty-pattern': 'error',\n 'no-empty-static-block': 'error',\n 'no-eval': 'error',\n 'no-ex-assign': 'error',\n 'no-extra-bind': 'error',\n 'no-extra-boolean-cast': 'error',\n 'no-fallthrough': 'error',\n 'no-func-assign': 'error',\n 'no-global-assign': 'error',\n 'no-import-assign': 'error',\n 'no-invalid-regexp': 'error',\n 'no-irregular-whitespace': 'error',\n 'no-iterator': 'off',\n 'no-label-var': 'error',\n 'no-labels': 'error',\n 'no-lone-blocks': 'error',\n 'no-loss-of-precision': 'error',\n 'no-misleading-character-class': 'error',\n 'no-new': 'error',\n 'no-new-func': 'error',\n 'no-new-native-nonconstructor': 'error',\n 'no-nonoctal-decimal-escape': 'error',\n 'no-obj-calls': 'error',\n 'no-param-reassign': 'error',\n 'no-plusplus': [\n 'error',\n {\n allowForLoopAfterthoughts: true,\n },\n ],\n 'no-promise-executor-return': 'error',\n 'no-prototype-builtins': 'error',\n 'no-redeclare': 'error',\n 'no-regex-spaces': 'error',\n 'no-return-assign': 'error',\n 'no-script-url': 'error',\n 'no-self-assign': 'error',\n 'no-self-compare': 'error',\n 'no-sequences': 'error',\n 'no-setter-return': 'error',\n 'no-shadow-restricted-names': 'error',\n 'no-sparse-arrays': 'error',\n 'no-template-curly-in-string': 'error',\n 'no-this-before-super': 'error',\n 'no-unassigned-vars': 'error',\n 'no-undef': 'error',\n 'no-unexpected-multiline': 'error',\n 'no-unneeded-ternary': 'error',\n 'no-unreachable': 'error',\n 'no-unsafe-finally': 'error',\n 'no-unsafe-negation': 'error',\n 'no-unsafe-optional-chaining': 'error',\n 'no-unused-expressions': 'off',\n 'no-unused-labels': 'error',\n 'no-unused-private-class-members': 'error',\n 'no-unused-vars': [\n 'error',\n {\n fix: {\n imports: 'safe-fix',\n },\n },\n ],\n 'no-useless-assignment': 'error',\n 'no-useless-backreference': 'error',\n 'no-useless-call': 'error',\n 'no-useless-catch': 'error',\n 'no-useless-computed-key': 'error',\n 'no-useless-concat': 'error',\n 'no-useless-escape': 'error',\n 'no-useless-rename': 'error',\n 'no-useless-return': 'error',\n 'no-var': 'error',\n 'no-void': [\n 'error',\n {\n allowAsStatement: true,\n },\n ],\n 'no-with': 'error',\n 'prefer-object-has-own': 'error',\n 'prefer-object-spread': 'error',\n 'prefer-template': 'error',\n 'preserve-caught-error': 'error',\n 'require-yield': 'error',\n 'symbol-description': 'error',\n 'use-isnan': 'error',\n 'valid-typeof': 'error',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const importSort = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: [{ name: 'import-sort', specifier: 'eslint-plugin-simple-import-sort' }],\n rules: {\n 'import-sort/imports': [\n 'error',\n {\n groups: [\n ['^\\\\u0000'],\n\n ['^node:.*\\\\u0000$', '^@?\\\\w.*\\\\u0000$', '^(@/|~/|[^.]).*\\\\u0000$', '^\\\\.\\\\..*\\\\u0000$', '^\\\\..*\\\\u0000$'],\n\n ['^node:'],\n\n ['^@?\\\\w'],\n\n ['^@/', '^~/', '^[^.]'],\n\n ['^\\\\.\\\\.', '^\\\\.'],\n ],\n },\n ],\n 'import-sort/exports': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const imports = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['import'],\n rules: {\n 'import/consistent-type-specifier-style': 'error',\n 'import/default': 'error',\n 'import/export': 'error',\n 'import/first': 'error',\n 'import/namespace': 'error',\n 'import/newline-after-import': [\n 'error',\n {\n count: 1,\n },\n ],\n 'import/no-absolute-path': 'error',\n 'import/no-amd': 'error',\n 'import/no-anonymous-default-export': 'error',\n 'import/no-commonjs': 'error',\n 'import/no-duplicates': 'error',\n 'import/no-dynamic-require': 'error',\n 'import/no-empty-named-blocks': 'error',\n 'import/no-mutable-exports': 'error',\n 'import/no-named-default': 'error',\n 'import/no-self-import': 'error',\n 'import/no-webpack-loader-syntax': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const jsdoc = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['jsdoc'],\n rules: {\n 'jsdoc/check-property-names': 'off',\n 'jsdoc/check-tag-names': 'error',\n 'jsdoc/empty-tags': 'error',\n 'jsdoc/implements-on-classes': 'off',\n 'jsdoc/no-defaults': 'off',\n 'jsdoc/require-property': 'off',\n 'jsdoc/require-property-description': 'off',\n 'jsdoc/require-property-name': 'off',\n 'jsdoc/require-property-type': 'off',\n 'jsdoc/require-yields': 'off',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const jsxA11y = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['jsx-a11y'],\n rules: {\n 'jsx-a11y/alt-text': 'error',\n 'jsx-a11y/anchor-has-content': 'error',\n 'jsx-a11y/anchor-is-valid': [\n 'error',\n {\n components: ['Link'],\n specialLink: ['to'],\n aspects: ['noHref', 'invalidHref', 'preferButton'],\n },\n ],\n 'jsx-a11y/aria-activedescendant-has-tabindex': 'error',\n 'jsx-a11y/aria-props': 'error',\n 'jsx-a11y/aria-proptypes': 'error',\n 'jsx-a11y/aria-role': 'error',\n 'jsx-a11y/aria-unsupported-elements': 'error',\n 'jsx-a11y/autocomplete-valid': 'error',\n 'jsx-a11y/click-events-have-key-events': 'error',\n 'jsx-a11y/control-has-associated-label': 'off',\n 'jsx-a11y/heading-has-content': 'error',\n 'jsx-a11y/html-has-lang': 'error',\n 'jsx-a11y/iframe-has-title': 'error',\n 'jsx-a11y/img-redundant-alt': 'error',\n 'jsx-a11y/interactive-supports-focus': [\n 'error',\n {\n tabbable: ['button', 'checkbox', 'link', 'searchbox', 'spinbutton', 'switch', 'textbox'],\n },\n ],\n 'jsx-a11y/label-has-associated-control': 'error',\n 'jsx-a11y/lang': 'error',\n 'jsx-a11y/media-has-caption': 'error',\n 'jsx-a11y/mouse-events-have-key-events': 'error',\n 'jsx-a11y/no-access-key': 'error',\n 'jsx-a11y/no-aria-hidden-on-focusable': 'error',\n 'jsx-a11y/no-autofocus': 'error',\n 'jsx-a11y/no-distracting-elements': 'error',\n 'jsx-a11y/no-interactive-element-to-noninteractive-role': [\n 'error',\n {\n tr: ['none', 'presentation'],\n canvas: ['img'],\n },\n ],\n 'jsx-a11y/no-noninteractive-element-interactions': [\n 'error',\n {\n handlers: ['onClick', 'onError', 'onLoad', 'onMouseDown', 'onMouseUp', 'onKeyPress', 'onKeyDown', 'onKeyUp'],\n alert: ['onKeyUp', 'onKeyDown', 'onKeyPress'],\n body: ['onError', 'onLoad'],\n dialog: ['onKeyUp', 'onKeyDown', 'onKeyPress'],\n iframe: ['onError', 'onLoad'],\n img: ['onError', 'onLoad'],\n },\n ],\n 'jsx-a11y/no-noninteractive-element-to-interactive-role': [\n 'error',\n {\n ul: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],\n ol: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],\n li: ['menuitem', 'menuitemradio', 'menuitemcheckbox', 'option', 'row', 'tab', 'treeitem'],\n table: ['grid'],\n td: ['gridcell'],\n fieldset: ['radiogroup', 'presentation'],\n },\n ],\n 'jsx-a11y/no-noninteractive-tabindex': [\n 'error',\n {\n tags: [],\n roles: ['tabpanel'],\n allowExpressionValues: true,\n },\n ],\n 'jsx-a11y/no-redundant-roles': 'error',\n 'jsx-a11y/no-static-element-interactions': [\n 'error',\n {\n allowExpressionValues: true,\n handlers: ['onClick', 'onMouseDown', 'onMouseUp', 'onKeyPress', 'onKeyDown', 'onKeyUp'],\n },\n ],\n 'jsx-a11y/prefer-tag-over-role': 'off',\n 'jsx-a11y/role-has-required-aria-props': 'error',\n 'jsx-a11y/role-supports-aria-props': 'error',\n 'jsx-a11y/scope': 'error',\n 'jsx-a11y/tabindex-no-positive': 'error',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const nelsonlaidev = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: [{ name: 'nelsonlaidev', specifier: '@nelsonlaidev/eslint-plugin' }],\n rules: {\n 'nelsonlaidev/lucide-icon-suffix': 'error',\n 'nelsonlaidev/lucide-restrict-import': 'error',\n 'nelsonlaidev/shadcn-cn-wrap-variants': 'error',\n 'nelsonlaidev/shadcn-cva-variants-suffix': 'error',\n 'nelsonlaidev/shadcn-prefer-spinner': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const nextjs = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['nextjs'],\n rules: {\n 'nextjs/google-font-display': 'error',\n 'nextjs/google-font-preconnect': 'error',\n 'nextjs/inline-script-id': 'error',\n 'nextjs/next-script-for-ga': 'error',\n 'nextjs/no-assign-module-variable': 'error',\n 'nextjs/no-async-client-component': 'error',\n 'nextjs/no-before-interactive-script-outside-document': 'error',\n 'nextjs/no-css-tags': 'error',\n 'nextjs/no-document-import-in-page': 'error',\n 'nextjs/no-duplicate-head': 'error',\n 'nextjs/no-head-element': 'error',\n 'nextjs/no-head-import-in-document': 'error',\n 'nextjs/no-html-link-for-pages': 'error',\n 'nextjs/no-img-element': 'error',\n 'nextjs/no-page-custom-font': 'error',\n 'nextjs/no-script-component-in-head': 'error',\n 'nextjs/no-styled-jsx-in-document': 'error',\n 'nextjs/no-sync-scripts': 'error',\n 'nextjs/no-title-in-document-head': 'error',\n 'nextjs/no-typos': 'error',\n 'nextjs/no-unwanted-polyfillio': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const node = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['node'],\n rules: {\n 'node/no-exports-assign': 'error',\n 'node/no-path-concat': 'error',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const oxc = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['oxc'],\n rules: {\n 'approx-constant': 'error',\n 'bad-array-method-on-arguments': 'error',\n 'bad-bitwise-operator': 'error',\n 'bad-char-at-comparison': 'error',\n 'bad-comparison-sequence': 'error',\n 'bad-min-max-func': 'error',\n 'bad-object-literal-comparison': 'error',\n 'bad-replace-all-arg': 'error',\n 'const-comparisons': 'error',\n 'double-comparisons': 'error',\n 'erasing-op': 'error',\n 'misrefactored-assign-op': 'error',\n 'missing-throw': 'error',\n 'no-accumulating-spread': 'error',\n 'no-async-endpoint-handlers': 'error',\n 'no-barrel-file': 'error',\n 'no-const-enum': 'error',\n 'no-this-in-exported-function': 'error',\n 'number-arg-out-of-range': 'error',\n 'only-used-in-recursion': 'error',\n 'uninvoked-array-callback': 'error',\n },\n },\n]\n","// This file is generated by `scripts/generate-oxlint-plugin-snapshots.ts`.\n// Do not edit this file manually.\n// cspell:disable\n\nimport type { DummyRuleMap } from 'oxlint'\n\ntype BetterTailwindcssSelector = Record<string, unknown>\n\nexport const reactHooksRecommendedLatestRules = {\n 'react-hooks/rules-of-hooks': 'error',\n 'react-hooks/exhaustive-deps': 'warn',\n 'react-hooks/static-components': 'error',\n 'react-hooks/use-memo': 'error',\n 'react-hooks/void-use-memo': 'error',\n 'react-hooks/preserve-manual-memoization': 'error',\n 'react-hooks/incompatible-library': 'warn',\n 'react-hooks/immutability': 'error',\n 'react-hooks/globals': 'error',\n 'react-hooks/refs': 'error',\n 'react-hooks/set-state-in-effect': 'error',\n 'react-hooks/error-boundaries': 'error',\n 'react-hooks/purity': 'error',\n 'react-hooks/set-state-in-render': 'error',\n 'react-hooks/unsupported-syntax': 'warn',\n 'react-hooks/config': 'error',\n 'react-hooks/gating': 'error',\n} satisfies DummyRuleMap\n\nexport const reactAllRules = {\n '@eslint-react/component-hook-factories': 'error',\n '@eslint-react/error-boundaries': 'error',\n '@eslint-react/exhaustive-deps': 'warn',\n '@eslint-react/immutability': 'error',\n '@eslint-react/no-access-state-in-setstate': 'error',\n '@eslint-react/no-array-index-key': 'warn',\n '@eslint-react/no-children-count': 'warn',\n '@eslint-react/no-children-for-each': 'warn',\n '@eslint-react/no-children-map': 'warn',\n '@eslint-react/no-children-only': 'warn',\n '@eslint-react/no-children-to-array': 'warn',\n '@eslint-react/no-class-component': 'warn',\n '@eslint-react/no-clone-element': 'warn',\n '@eslint-react/no-component-will-mount': 'error',\n '@eslint-react/no-component-will-receive-props': 'error',\n '@eslint-react/no-component-will-update': 'error',\n '@eslint-react/no-context-provider': 'warn',\n '@eslint-react/no-create-ref': 'error',\n '@eslint-react/no-direct-mutation-state': 'error',\n '@eslint-react/no-duplicate-key': 'error',\n '@eslint-react/no-forward-ref': 'warn',\n '@eslint-react/no-missing-component-display-name': 'warn',\n '@eslint-react/no-missing-context-display-name': 'warn',\n '@eslint-react/no-missing-key': 'error',\n '@eslint-react/no-misused-capture-owner-stack': 'error',\n '@eslint-react/no-nested-component-definitions': 'error',\n '@eslint-react/no-nested-lazy-component-declarations': 'error',\n '@eslint-react/no-redundant-should-component-update': 'error',\n '@eslint-react/no-set-state-in-component-did-mount': 'warn',\n '@eslint-react/no-set-state-in-component-did-update': 'warn',\n '@eslint-react/no-set-state-in-component-will-update': 'warn',\n '@eslint-react/no-unnecessary-use-callback': 'warn',\n '@eslint-react/no-unnecessary-use-memo': 'warn',\n '@eslint-react/no-unnecessary-use-prefix': 'warn',\n '@eslint-react/no-unsafe-component-will-mount': 'warn',\n '@eslint-react/no-unsafe-component-will-receive-props': 'warn',\n '@eslint-react/no-unsafe-component-will-update': 'warn',\n '@eslint-react/no-unstable-context-value': 'warn',\n '@eslint-react/no-unstable-default-props': 'warn',\n '@eslint-react/no-unused-class-component-members': 'warn',\n '@eslint-react/no-unused-state': 'warn',\n '@eslint-react/no-use-context': 'warn',\n '@eslint-react/prefer-destructuring-assignment': 'warn',\n '@eslint-react/prefer-namespace-import': 'warn',\n '@eslint-react/purity': 'warn',\n '@eslint-react/refs': 'error',\n '@eslint-react/rules-of-hooks': 'error',\n '@eslint-react/set-state-in-effect': 'warn',\n '@eslint-react/set-state-in-render': 'error',\n '@eslint-react/unsupported-syntax': 'error',\n '@eslint-react/use-memo': 'error',\n '@eslint-react/use-state': 'warn',\n '@eslint-react/jsx-no-children-prop': 'warn',\n '@eslint-react/jsx-no-children-prop-with-children': 'error',\n '@eslint-react/jsx-no-comment-textnodes': 'warn',\n '@eslint-react/jsx-no-deoptimization': 'error',\n '@eslint-react/jsx-no-namespace': 'error',\n '@eslint-react/jsx-no-useless-fragment': 'warn',\n '@eslint-react/rsc-function-definition': 'error',\n '@eslint-react/dom-no-dangerously-set-innerhtml': 'warn',\n '@eslint-react/dom-no-dangerously-set-innerhtml-with-children': 'error',\n '@eslint-react/dom-no-find-dom-node': 'error',\n '@eslint-react/dom-no-flush-sync': 'error',\n '@eslint-react/dom-no-hydrate': 'error',\n '@eslint-react/dom-no-missing-button-type': 'warn',\n '@eslint-react/dom-no-missing-iframe-sandbox': 'warn',\n '@eslint-react/dom-no-render': 'error',\n '@eslint-react/dom-no-render-return-value': 'error',\n '@eslint-react/dom-no-script-url': 'warn',\n '@eslint-react/dom-no-string-style-prop': 'error',\n '@eslint-react/dom-no-unknown-property': 'warn',\n '@eslint-react/dom-no-unsafe-iframe-sandbox': 'warn',\n '@eslint-react/dom-no-unsafe-target-blank': 'warn',\n '@eslint-react/dom-no-use-form-state': 'warn',\n '@eslint-react/dom-no-void-elements-with-children': 'error',\n '@eslint-react/dom-prefer-namespace-import': 'warn',\n '@eslint-react/web-api-no-leaked-event-listener': 'warn',\n '@eslint-react/web-api-no-leaked-interval': 'warn',\n '@eslint-react/web-api-no-leaked-resize-observer': 'warn',\n '@eslint-react/web-api-no-leaked-timeout': 'warn',\n '@eslint-react/naming-convention-context-name': 'warn',\n '@eslint-react/naming-convention-id-name': 'warn',\n '@eslint-react/naming-convention-ref-name': 'warn',\n} satisfies DummyRuleMap\n\nexport const reactDisableConflictReactHooksRules = {\n 'react-hooks/exhaustive-deps': 'off',\n 'react-hooks/rules-of-hooks': 'off',\n 'react-hooks/component-hook-factories': 'off',\n 'react-hooks/error-boundaries': 'off',\n 'react-hooks/immutability': 'off',\n 'react-hooks/purity': 'off',\n 'react-hooks/refs': 'off',\n 'react-hooks/set-state-in-effect': 'off',\n 'react-hooks/set-state-in-render': 'off',\n 'react-hooks/static-components': 'off',\n 'react-hooks/unsupported-syntax': 'off',\n 'react-hooks/use-memo': 'off',\n} satisfies DummyRuleMap\n\nexport const playwrightRecommendedRules = {\n 'no-empty-pattern': 'off',\n 'playwright/consistent-spacing-between-blocks': 'warn',\n 'playwright/expect-expect': 'warn',\n 'playwright/max-nested-describe': 'warn',\n 'playwright/missing-playwright-await': 'error',\n 'playwright/no-conditional-expect': 'warn',\n 'playwright/no-conditional-in-test': 'warn',\n 'playwright/no-duplicate-hooks': 'warn',\n 'playwright/no-duplicate-slow': 'warn',\n 'playwright/no-element-handle': 'warn',\n 'playwright/no-eval': 'warn',\n 'playwright/no-focused-test': 'error',\n 'playwright/no-force-option': 'warn',\n 'playwright/no-nested-step': 'warn',\n 'playwright/no-networkidle': 'error',\n 'playwright/no-page-pause': 'warn',\n 'playwright/no-skipped-test': 'warn',\n 'playwright/no-standalone-expect': 'error',\n 'playwright/no-unsafe-references': 'error',\n 'playwright/no-unused-locators': 'error',\n 'playwright/no-useless-await': 'warn',\n 'playwright/no-useless-not': 'warn',\n 'playwright/no-wait-for-navigation': 'error',\n 'playwright/no-wait-for-selector': 'warn',\n 'playwright/no-wait-for-timeout': 'warn',\n 'playwright/prefer-hooks-in-order': 'warn',\n 'playwright/prefer-hooks-on-top': 'warn',\n 'playwright/prefer-locator': 'warn',\n 'playwright/prefer-to-have-count': 'warn',\n 'playwright/prefer-to-have-length': 'warn',\n 'playwright/prefer-web-first-assertions': 'error',\n 'playwright/valid-describe-callback': 'error',\n 'playwright/valid-expect': 'error',\n 'playwright/valid-expect-in-promise': 'error',\n 'playwright/valid-test-tags': 'error',\n 'playwright/valid-title': 'error',\n} satisfies DummyRuleMap\n\nexport const regexpRecommendedRules = {\n 'no-control-regex': 'error',\n 'no-misleading-character-class': 'error',\n 'no-regex-spaces': 'error',\n 'prefer-regex-literals': 'error',\n 'no-invalid-regexp': 'off',\n 'no-useless-backreference': 'off',\n 'no-empty-character-class': 'off',\n 'regexp/confusing-quantifier': 'warn',\n 'regexp/control-character-escape': 'error',\n 'regexp/match-any': 'error',\n 'regexp/negation': 'error',\n 'regexp/no-contradiction-with-assertion': 'error',\n 'regexp/no-dupe-characters-character-class': 'error',\n 'regexp/no-dupe-disjunctions': 'error',\n 'regexp/no-empty-alternative': 'warn',\n 'regexp/no-empty-capturing-group': 'error',\n 'regexp/no-empty-character-class': 'error',\n 'regexp/no-empty-group': 'error',\n 'regexp/no-empty-lookarounds-assertion': 'error',\n 'regexp/no-empty-string-literal': 'error',\n 'regexp/no-escape-backspace': 'error',\n 'regexp/no-extra-lookaround-assertions': 'error',\n 'regexp/no-invalid-regexp': 'error',\n 'regexp/no-invisible-character': 'error',\n 'regexp/no-lazy-ends': 'warn',\n 'regexp/no-legacy-features': 'error',\n 'regexp/no-misleading-capturing-group': 'error',\n 'regexp/no-misleading-unicode-character': 'error',\n 'regexp/no-missing-g-flag': 'error',\n 'regexp/no-non-standard-flag': 'error',\n 'regexp/no-obscure-range': 'error',\n 'regexp/no-optional-assertion': 'error',\n 'regexp/no-potentially-useless-backreference': 'warn',\n 'regexp/no-super-linear-backtracking': 'error',\n 'regexp/no-trivially-nested-assertion': 'error',\n 'regexp/no-trivially-nested-quantifier': 'error',\n 'regexp/no-unused-capturing-group': 'error',\n 'regexp/no-useless-assertions': 'error',\n 'regexp/no-useless-backreference': 'error',\n 'regexp/no-useless-character-class': 'error',\n 'regexp/no-useless-dollar-replacements': 'error',\n 'regexp/no-useless-escape': 'error',\n 'regexp/no-useless-flag': 'warn',\n 'regexp/no-useless-lazy': 'error',\n 'regexp/no-useless-non-capturing-group': 'error',\n 'regexp/no-useless-quantifier': 'error',\n 'regexp/no-useless-range': 'error',\n 'regexp/no-useless-set-operand': 'error',\n 'regexp/no-useless-string-literal': 'error',\n 'regexp/no-useless-two-nums-quantifier': 'error',\n 'regexp/no-zero-quantifier': 'error',\n 'regexp/optimal-lookaround-quantifier': 'warn',\n 'regexp/optimal-quantifier-concatenation': 'error',\n 'regexp/prefer-character-class': 'error',\n 'regexp/prefer-d': 'error',\n 'regexp/prefer-plus-quantifier': 'error',\n 'regexp/prefer-predefined-assertion': 'error',\n 'regexp/prefer-question-quantifier': 'error',\n 'regexp/prefer-range': 'error',\n 'regexp/prefer-set-operation': 'error',\n 'regexp/prefer-star-quantifier': 'error',\n 'regexp/prefer-unicode-codepoint-escapes': 'error',\n 'regexp/prefer-w': 'error',\n 'regexp/simplify-set-operations': 'error',\n 'regexp/sort-flags': 'error',\n 'regexp/strict': 'error',\n 'regexp/use-ignore-case': 'error',\n} satisfies DummyRuleMap\n\nexport const sonarjsRecommendedRules = {\n 'sonarjs/function-name': 'off',\n 'sonarjs/class-name': 'error',\n 'sonarjs/max-lines': 'off',\n 'sonarjs/no-tab': 'off',\n 'sonarjs/variable-name': 'off',\n 'sonarjs/comment-regex': 'off',\n 'sonarjs/no-commented-code': 'off',\n 'sonarjs/elseif-without-else': 'off',\n 'sonarjs/no-fallthrough': 'error',\n 'sonarjs/nested-control-flow': 'off',\n 'sonarjs/too-many-break-or-continue-in-loop': 'off',\n 'sonarjs/max-lines-per-function': 'off',\n 'sonarjs/no-nested-incdec': 'off',\n 'sonarjs/no-equals-in-for-termination': 'error',\n 'sonarjs/no-extra-arguments': 'error',\n 'sonarjs/no-collapsible-if': 'off',\n 'sonarjs/expression-complexity': 'off',\n 'sonarjs/no-redundant-parentheses': 'off',\n 'sonarjs/no-labels': 'error',\n 'sonarjs/no-nested-assignment': 'error',\n 'sonarjs/no-redundant-boolean': 'error',\n 'sonarjs/prefer-single-boolean-return': 'error',\n 'sonarjs/unused-import': 'error',\n 'sonarjs/fixme-tag': 'error',\n 'sonarjs/todo-tag': 'error',\n 'sonarjs/useless-string-operation': 'off',\n 'sonarjs/no-unused-function-argument': 'off',\n 'sonarjs/no-duplicate-string': 'off',\n 'sonarjs/no-case-label-in-switch': 'error',\n 'sonarjs/no-parameter-reassignment': 'error',\n 'sonarjs/no-floating-point-equality': 'error',\n 'sonarjs/prefer-while': 'error',\n 'sonarjs/no-sonar-comments': 'off',\n 'sonarjs/no-small-switch': 'error',\n 'sonarjs/no-hardcoded-ip': 'error',\n 'sonarjs/label-position': 'error',\n 'sonarjs/public-static-readonly': 'error',\n 'sonarjs/file-header': 'off',\n 'sonarjs/call-argument-line': 'error',\n 'sonarjs/max-switch-cases': 'error',\n 'sonarjs/no-unused-vars': 'error',\n 'sonarjs/prefer-immediate-return': 'off',\n 'sonarjs/function-inside-loop': 'error',\n 'sonarjs/code-eval': 'error',\n 'sonarjs/no-variable-usage-before-declaration': 'off',\n 'sonarjs/future-reserved-words': 'error',\n 'sonarjs/array-constructor': 'off',\n 'sonarjs/bitwise-operators': 'error',\n 'sonarjs/no-function-declaration-in-block': 'off',\n 'sonarjs/no-primitive-wrappers': 'error',\n 'sonarjs/for-in': 'off',\n 'sonarjs/cyclomatic-complexity': 'off',\n 'sonarjs/no-skipped-tests': 'error',\n 'sonarjs/no-identical-expressions': 'error',\n 'sonarjs/no-nested-switch': 'off',\n 'sonarjs/constructor-for-side-effects': 'error',\n 'sonarjs/no-dead-store': 'error',\n 'sonarjs/no-identical-conditions': 'error',\n 'sonarjs/no-duplicated-branches': 'error',\n 'sonarjs/deprecation': 'error',\n 'sonarjs/no-inverted-boolean-check': 'error',\n 'sonarjs/misplaced-loop-counter': 'error',\n 'sonarjs/no-nested-functions': 'error',\n 'sonarjs/no-hardcoded-passwords': 'error',\n 'sonarjs/sql-queries': 'error',\n 'sonarjs/insecure-cookie': 'error',\n 'sonarjs/no-useless-increment': 'error',\n 'sonarjs/no-globals-shadowing': 'error',\n 'sonarjs/no-undefined-assignment': 'off',\n 'sonarjs/no-empty-test-file': 'error',\n 'sonarjs/no-ignored-return': 'error',\n 'sonarjs/no-wildcard-import': 'off',\n 'sonarjs/arguments-order': 'error',\n 'sonarjs/pseudo-random': 'error',\n 'sonarjs/for-loop-increment-sign': 'error',\n 'sonarjs/null-dereference': 'error',\n 'sonarjs/no-selector-parameter': 'error',\n 'sonarjs/updated-loop-counter': 'error',\n 'sonarjs/block-scoped-var': 'error',\n 'sonarjs/no-built-in-override': 'off',\n 'sonarjs/prefer-object-literal': 'off',\n 'sonarjs/no-ignored-exceptions': 'error',\n 'sonarjs/no-gratuitous-expressions': 'error',\n 'sonarjs/file-uploads': 'error',\n 'sonarjs/file-permissions': 'error',\n 'sonarjs/no-empty-character-class': 'error',\n 'sonarjs/no-unenclosed-multiline-block': 'error',\n 'sonarjs/index-of-compare-to-positive-number': 'error',\n 'sonarjs/assertions-in-tests': 'error',\n 'sonarjs/no-implicit-global': 'error',\n 'sonarjs/no-useless-catch': 'error',\n 'sonarjs/xml-parser-xxe': 'error',\n 'sonarjs/non-existent-operator': 'error',\n 'sonarjs/web-sql-database': 'off',\n 'sonarjs/post-message': 'error',\n 'sonarjs/no-array-delete': 'error',\n 'sonarjs/no-alphabetical-sort': 'error',\n 'sonarjs/no-incomplete-assertions': 'error',\n 'sonarjs/no-global-this': 'error',\n 'sonarjs/new-operator-misuse': 'error',\n 'sonarjs/no-delete-var': 'error',\n 'sonarjs/strings-comparison': 'off',\n 'sonarjs/file-name-differ-from-class': 'off',\n 'sonarjs/cookie-no-httponly': 'error',\n 'sonarjs/no-nested-conditional': 'error',\n 'sonarjs/no-incorrect-string-concat': 'off',\n 'sonarjs/different-types-comparison': 'error',\n 'sonarjs/inverted-assertion-arguments': 'error',\n 'sonarjs/shorthand-property-grouping': 'off',\n 'sonarjs/updated-const-var': 'error',\n 'sonarjs/arguments-usage': 'off',\n 'sonarjs/destructuring-assignment-syntax': 'off',\n 'sonarjs/no-invariant-returns': 'error',\n 'sonarjs/arrow-function-convention': 'off',\n 'sonarjs/class-prototype': 'off',\n 'sonarjs/generator-without-yield': 'error',\n 'sonarjs/no-require-or-define': 'off',\n 'sonarjs/no-associative-arrays': 'error',\n 'sonarjs/comma-or-logical-or-case': 'error',\n 'sonarjs/no-redundant-jump': 'error',\n 'sonarjs/inconsistent-function-call': 'error',\n 'sonarjs/no-use-of-empty-return-value': 'error',\n 'sonarjs/void-use': 'error',\n 'sonarjs/operation-returning-nan': 'off',\n 'sonarjs/values-not-convertible-to-numbers': 'off',\n 'sonarjs/non-number-in-arithmetic-expression': 'off',\n 'sonarjs/cognitive-complexity': 'error',\n 'sonarjs/argument-type': 'error',\n 'sonarjs/in-operator-type-error': 'error',\n 'sonarjs/array-callback-without-return': 'error',\n 'sonarjs/declarations-in-global-scope': 'off',\n 'sonarjs/function-return-type': 'error',\n 'sonarjs/no-inconsistent-returns': 'off',\n 'sonarjs/no-reference-error': 'off',\n 'sonarjs/no-all-duplicated-branches': 'error',\n 'sonarjs/no-same-line-conditional': 'error',\n 'sonarjs/conditional-indentation': 'off',\n 'sonarjs/no-collection-size-mischeck': 'error',\n 'sonarjs/no-unthrown-error': 'error',\n 'sonarjs/no-unused-collection': 'error',\n 'sonarjs/no-os-command-from-path': 'error',\n 'sonarjs/no-misleading-array-reverse': 'error',\n 'sonarjs/no-for-in-iterable': 'off',\n 'sonarjs/no-element-overwrite': 'error',\n 'sonarjs/no-identical-functions': 'error',\n 'sonarjs/no-empty-collection': 'error',\n 'sonarjs/no-redundant-assignments': 'error',\n 'sonarjs/prefer-type-guard': 'error',\n 'sonarjs/use-type-alias': 'error',\n 'sonarjs/no-return-type-any': 'off',\n 'sonarjs/no-implicit-dependencies': 'off',\n 'sonarjs/no-useless-intersection': 'error',\n 'sonarjs/weak-ssl': 'error',\n 'sonarjs/no-weak-keys': 'error',\n 'sonarjs/csrf': 'error',\n 'sonarjs/production-debug': 'error',\n 'sonarjs/prefer-default-last': 'error',\n 'sonarjs/no-in-misuse': 'error',\n 'sonarjs/no-duplicate-in-composite': 'error',\n 'sonarjs/max-union-size': 'off',\n 'sonarjs/no-undefined-argument': 'error',\n 'sonarjs/no-nested-template-literals': 'error',\n 'sonarjs/prefer-promise-shorthand': 'error',\n 'sonarjs/os-command': 'off',\n 'sonarjs/no-redundant-optional': 'error',\n 'sonarjs/hashing': 'error',\n 'sonarjs/bool-param-default': 'off',\n 'sonarjs/no-try-promise': 'error',\n 'sonarjs/unverified-certificate': 'error',\n 'sonarjs/no-unsafe-unzip': 'off',\n 'sonarjs/cors': 'error',\n 'sonarjs/link-with-target-blank': 'error',\n 'sonarjs/disabled-auto-escaping': 'error',\n 'sonarjs/table-header': 'error',\n 'sonarjs/no-table-as-layout': 'error',\n 'sonarjs/table-header-reference': 'error',\n 'sonarjs/object-alt-content': 'error',\n 'sonarjs/no-clear-text-protocols': 'error',\n 'sonarjs/publicly-writable-directories': 'error',\n 'sonarjs/unverified-hostname': 'error',\n 'sonarjs/encryption-secure-mode': 'error',\n 'sonarjs/no-weak-cipher': 'error',\n 'sonarjs/no-intrusive-permissions': 'off',\n 'sonarjs/insecure-jwt-token': 'error',\n 'sonarjs/x-powered-by': 'error',\n 'sonarjs/hidden-files': 'off',\n 'sonarjs/content-length': 'error',\n 'sonarjs/disabled-resource-integrity': 'error',\n 'sonarjs/content-security-policy': 'error',\n 'sonarjs/no-mixed-content': 'off',\n 'sonarjs/frame-ancestors': 'off',\n 'sonarjs/no-mime-sniff': 'error',\n 'sonarjs/no-referrer-policy': 'error',\n 'sonarjs/strict-transport-security': 'error',\n 'sonarjs/confidential-information-logging': 'off',\n 'sonarjs/no-ip-forward': 'off',\n 'sonarjs/empty-string-repetition': 'error',\n 'sonarjs/regex-complexity': 'error',\n 'sonarjs/no-incompatible-assertion-types': 'error',\n 'sonarjs/anchor-precedence': 'error',\n 'sonarjs/slow-regex': 'error',\n 'sonarjs/no-invalid-regexp': 'error',\n 'sonarjs/unused-named-groups': 'error',\n 'sonarjs/no-same-argument-assert': 'error',\n 'sonarjs/unicode-aware-regex': 'off',\n 'sonarjs/no-misleading-character-class': 'error',\n 'sonarjs/duplicates-in-character-class': 'error',\n 'sonarjs/session-regeneration': 'error',\n 'sonarjs/prefer-specific-assertions': 'error',\n 'sonarjs/no-trivial-assertions': 'error',\n 'sonarjs/test-check-exception': 'error',\n 'sonarjs/stable-tests': 'error',\n 'sonarjs/no-empty-after-reluctant': 'error',\n 'sonarjs/single-character-alternation': 'error',\n 'sonarjs/no-code-after-done': 'error',\n 'sonarjs/disabled-timeout': 'error',\n 'sonarjs/chai-determinate-assertion': 'error',\n 'sonarjs/aws-s3-bucket-insecure-http': 'error',\n 'sonarjs/aws-s3-bucket-versioning': 'error',\n 'sonarjs/aws-s3-bucket-granted-access': 'error',\n 'sonarjs/no-angular-bypass-sanitization': 'error',\n 'sonarjs/aws-iam-public-access': 'error',\n 'sonarjs/aws-ec2-unencrypted-ebs-volume': 'error',\n 'sonarjs/aws-s3-bucket-public-access': 'error',\n 'sonarjs/aws-iam-all-privileges': 'error',\n 'sonarjs/aws-rds-unencrypted-databases': 'error',\n 'sonarjs/aws-iam-all-resources-accessible': 'off',\n 'sonarjs/aws-opensearchservice-domain': 'error',\n 'sonarjs/aws-iam-privilege-escalation': 'error',\n 'sonarjs/aws-sagemaker-unencrypted-notebook': 'error',\n 'sonarjs/aws-restricted-ip-admin-access': 'error',\n 'sonarjs/no-empty-alternatives': 'error',\n 'sonarjs/no-control-regex': 'error',\n 'sonarjs/no-regex-spaces': 'error',\n 'sonarjs/aws-sns-unencrypted-topics': 'error',\n 'sonarjs/existing-groups': 'error',\n 'sonarjs/aws-ec2-rds-dms-public': 'error',\n 'sonarjs/aws-sqs-unencrypted-queue': 'error',\n 'sonarjs/no-empty-group': 'error',\n 'sonarjs/aws-efs-unencrypted': 'error',\n 'sonarjs/aws-apigateway-public-api': 'error',\n 'sonarjs/stateful-regex': 'error',\n 'sonarjs/concise-regex': 'error',\n 'sonarjs/single-char-in-character-classes': 'error',\n 'sonarjs/no-hardcoded-secrets': 'error',\n 'sonarjs/no-exclusive-tests': 'error',\n 'sonarjs/hardcoded-secret-signatures': 'error',\n 'sonarjs/jsx-no-leaked-render': 'error',\n 'sonarjs/no-hook-setter-in-body': 'error',\n 'sonarjs/no-useless-react-setstate': 'error',\n 'sonarjs/no-uniq-key': 'error',\n 'sonarjs/redundant-type-aliases': 'error',\n 'sonarjs/prefer-regexp-exec': 'error',\n 'sonarjs/no-internal-api-use': 'error',\n 'sonarjs/prefer-read-only-props': 'error',\n 'sonarjs/no-literal-call': 'error',\n 'sonarjs/reduce-initial-value': 'error',\n 'sonarjs/no-async-constructor': 'error',\n 'sonarjs/review-blockchain-mnemonic': 'error',\n 'sonarjs/dynamically-constructed-templates': 'error',\n 'sonarjs/no-session-cookies-on-static-assets': 'error',\n 'sonarjs/dompurify-unsafe-config': 'error',\n 'sonarjs/no-duplicate-test-title': 'error',\n 'sonarjs/async-test-assertions': 'error',\n 'sonarjs/no-empty-test-title': 'error',\n 'sonarjs/hooks-before-test-cases': 'error',\n 'sonarjs/no-forced-browser-interaction': 'error',\n 'sonarjs/super-linear-regex': 'error',\n} satisfies DummyRuleMap\n\nexport const betterTailwindcssDefaultSelectors = [\n {\n kind: 'attribute',\n name: '^class(?:Name)?$',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^class(?:Name)?$',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^class:.*$',\n },\n {\n kind: 'attribute',\n name: '(?:^\\\\[class\\\\]$)|(?:^\\\\[ngClass\\\\]$)',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '(?:^\\\\[class\\\\..*\\\\]$)',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n {\n type: 'objectKeys',\n },\n ],\n name: '(?:^\\\\[class\\\\]$)|(?:^\\\\[ngClass\\\\]$)',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n {\n type: 'objectKeys',\n },\n ],\n name: '^v-bind:class$',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n {\n type: 'objectKeys',\n },\n ],\n name: '^class:list$',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^classList$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^cc$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^cc$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^base$',\n type: 'objectValues',\n },\n ],\n name: '^clb$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^variants.*$',\n type: 'objectValues',\n },\n ],\n name: '^clb$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^compoundVariants\\\\[\\\\d+\\\\]\\\\.classes$',\n type: 'objectValues',\n },\n ],\n name: '^clb$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^clsx$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^clsx$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^cn$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^cn$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^cnb$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^cnb$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^ctl$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^cva$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^variants.*$',\n type: 'objectValues',\n },\n ],\n name: '^cva$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^compoundVariants\\\\[\\\\d+\\\\]\\\\.(?:className|class)$',\n type: 'objectValues',\n },\n ],\n name: '^cva$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^cx$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^cx$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^dcnb$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^dcnb$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^objstr$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^variants.*$',\n type: 'objectValues',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^compoundVariants\\\\[\\\\d+\\\\]\\\\.(?:className|class).*$',\n type: 'objectValues',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^base$',\n type: 'objectValues',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^slots.*$',\n type: 'objectValues',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^compoundSlots\\\\[\\\\d+\\\\]\\\\.(?:className|class).*$',\n type: 'objectValues',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^twJoin$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^twMerge$',\n },\n {\n kind: 'variable',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^classNames?$',\n },\n {\n kind: 'variable',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^classes$',\n },\n {\n kind: 'variable',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^styles?$',\n },\n {\n kind: 'tag',\n path: 'twc(\\\\.\\\\w+)?',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n {\n match: [\n {\n type: 'strings',\n },\n ],\n type: 'anonymousFunctionReturn',\n },\n ],\n path: '^twc\\\\.\\\\w+',\n },\n {\n kind: 'tag',\n path: 'twx(\\\\.\\\\w+)?',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n {\n match: [\n {\n type: 'strings',\n },\n ],\n type: 'anonymousFunctionReturn',\n },\n ],\n path: '^twx\\\\.\\\\w+',\n },\n] satisfies BetterTailwindcssSelector[]\n","import type { OxlintOverride } from 'oxlint'\nimport type { PlaywrightConfig } from '../types/playwright'\n\nimport { playwrightRecommendedRules } from '../generated/plugin-snapshots'\n\nexport const playwright = (config: PlaywrightConfig): OxlintOverride[] => [\n {\n files: config.files,\n jsPlugins: ['eslint-plugin-playwright'],\n rules: {\n ...playwrightRecommendedRules,\n\n 'playwright/expect-expect': [\n 'error',\n {\n assertFunctionNames: config.assertFunctionNames ?? [],\n assertFunctionPatterns: config.assertFunctionPatterns ?? [],\n },\n ],\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const promise = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['promise'],\n rules: {\n 'promise/always-return': 'error',\n 'promise/catch-or-return': 'error',\n 'promise/no-callback-in-promise': 'error',\n 'promise/no-multiple-resolved': 'error',\n 'promise/no-nesting': 'error',\n 'promise/no-new-statics': 'error',\n 'promise/no-promise-in-callback': 'error',\n 'promise/no-return-in-finally': 'error',\n 'promise/no-return-wrap': 'error',\n 'promise/param-names': 'error',\n 'promise/prefer-await-to-callbacks': 'error',\n 'promise/prefer-await-to-then': 'error',\n 'promise/prefer-catch': 'error',\n 'promise/spec-only': 'error',\n 'promise/valid-params': 'error',\n },\n },\n]\n","import type { DummyRuleMap } from 'oxlint'\n\nexport function remapRuleNames(rules: DummyRuleMap, from: string, to: string): DummyRuleMap {\n return Object.fromEntries(\n Object.entries(rules).map(([name, value]) => [name.startsWith(from) ? to + name.slice(from.length) : name, value]),\n )\n}\n\ntype Awaitable<T> = T | PromiseLike<T>\n\ntype InteropDefault<T> = T extends { default: infer U } ? U : T\n\nfunction hasDefault(value: unknown): value is { default: unknown } {\n return value !== null && (typeof value === 'object' || typeof value === 'function') && 'default' in value\n}\n\nexport async function interopDefault<T>(m: Awaitable<T>): Promise<InteropDefault<T>> {\n const resolved = await m\n\n if (hasDefault(resolved)) {\n return resolved.default as InteropDefault<T>\n }\n\n return resolved as InteropDefault<T>\n}\n","import type { OxlintOverride } from 'oxlint'\n\nimport {\n reactAllRules,\n reactDisableConflictReactHooksRules,\n reactHooksRecommendedLatestRules,\n} from '../generated/plugin-snapshots'\nimport { GLOB_SRC } from '../globs'\nimport { remapRuleNames } from '../utils'\n\nexport const react = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: [\n { name: '@eslint-react', specifier: '@eslint-react/eslint-plugin' },\n { name: 'react-hooks-js', specifier: 'eslint-plugin-react-hooks' },\n ],\n rules: {\n ...remapRuleNames(reactHooksRecommendedLatestRules, 'react-hooks', 'react-hooks-js'),\n\n ...reactAllRules,\n ...remapRuleNames(reactDisableConflictReactHooksRules, 'react-hooks', 'react-hooks-js'),\n\n '@eslint-react/immutability': 'error',\n '@eslint-react/refs': 'error',\n },\n },\n // Rules that require type information are not supported by Oxlint yet.\n // {\n // files: [GLOB_TS, GLOB_TSX],\n // rules: {\n // '@eslint-react/no-leaked-conditional-rendering': 'error',\n // '@eslint-react/no-unused-props': 'error',\n // },\n // },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { regexpRecommendedRules } from '../generated/plugin-snapshots'\nimport { GLOB_SRC } from '../globs'\n\nexport const regexp = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-regexp'],\n rules: {\n ...regexpRecommendedRules,\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { sonarjsRecommendedRules } from '../generated/plugin-snapshots'\nimport { GLOB_SRC } from '../globs'\n\nexport const sonarjs = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-sonarjs'],\n rules: {\n ...sonarjsRecommendedRules,\n\n // Disable due to poor performance\n // https://community.sonarsource.com/t/eslint-plugin-sonarjs-performance-issues-on-large-codebase/138392\n 'sonarjs/no-commented-code': 'off',\n 'sonarjs/deprecation': 'off',\n 'sonarjs/arguments-order': 'off',\n\n // Unnecessary\n 'sonarjs/pseudo-random': 'off',\n 'sonarjs/function-return-type': 'off',\n 'sonarjs/prefer-read-only-props': 'off',\n 'sonarjs/argument-type': 'off',\n 'sonarjs/cognitive-complexity': 'off',\n\n // Replaced by React rules\n 'sonarjs/jsx-no-leaked-render': 'off',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const stylistic = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['@stylistic/eslint-plugin'],\n rules: {\n '@stylistic/multiline-comment-style': ['error', 'separate-lines'],\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\nimport type { TailwindCSSConfig } from '../types'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const tailwindcss = (options: TailwindCSSConfig): OxlintOverride[] => {\n const disableShorthand = options.canonical?.logical ?? true\n\n return [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-better-tailwindcss'],\n rules: {\n 'better-tailwindcss/enforce-canonical-classes': [\n 'error',\n {\n collapse: options.canonical?.collapse ?? true,\n logical: options.canonical?.logical ?? true,\n },\n ],\n\n // Recommended to be disabled to avoid duplicate reports\n // when the canonical classes rule is enabled\n 'better-tailwindcss/enforce-consistent-important-position': 'off',\n 'better-tailwindcss/enforce-consistent-variable-syntax': 'off',\n 'better-tailwindcss/enforce-shorthand-classes': disableShorthand ? 'off' : 'error',\n\n 'better-tailwindcss/enforce-consistent-class-order': [\n 'error',\n {\n order: options.classOrder?.order ?? 'official',\n componentClassOrder: options.classOrder?.componentOrder ?? 'preserve',\n componentClassPosition: options.classOrder?.componentPosition ?? 'start',\n unknownClassOrder: options.classOrder?.unknownOrder ?? 'preserve',\n unknownClassPosition: options.classOrder?.unknownPosition ?? 'start',\n },\n ],\n\n 'better-tailwindcss/no-conflicting-classes': 'error',\n 'better-tailwindcss/no-deprecated-classes': 'error',\n 'better-tailwindcss/no-duplicate-classes': 'error',\n\n 'better-tailwindcss/no-restricted-classes': ['error', { restrict: options.restrict ?? [] }],\n 'better-tailwindcss/no-unknown-classes': ['error', { ignore: options.ignore ?? [] }],\n\n 'better-tailwindcss/no-unnecessary-whitespace': [\n 'error',\n { allowMultiline: options.whitespace?.allowMultiline ?? true },\n ],\n },\n },\n ]\n}\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const typescript = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['typescript'],\n rules: {\n 'typescript/adjacent-overload-signatures': 'error',\n 'typescript/array-type': [\n 'error',\n {\n default: 'array-simple',\n readonly: 'array-simple',\n },\n ],\n 'typescript/await-thenable': 'error',\n 'typescript/ban-ts-comment': [\n 'error',\n {\n minimumDescriptionLength: 10,\n },\n ],\n 'typescript/ban-tslint-comment': 'error',\n 'typescript/class-literal-property-style': 'error',\n 'typescript/consistent-generic-constructors': 'error',\n 'typescript/consistent-indexed-object-style': 'error',\n 'typescript/consistent-type-assertions': 'error',\n 'typescript/consistent-type-definitions': ['error', 'type'],\n 'typescript/consistent-type-exports': [\n 'error',\n {\n fixMixedExportsWithInlineTypeSpecifier: false,\n },\n ],\n 'typescript/consistent-type-imports': [\n 'error',\n {\n prefer: 'type-imports',\n fixStyle: 'separate-type-imports',\n },\n ],\n 'typescript/dot-notation': 'error',\n 'typescript/no-array-delete': 'error',\n 'typescript/no-base-to-string': 'error',\n 'typescript/no-confusing-non-null-assertion': 'error',\n 'typescript/no-confusing-void-expression': 'error',\n 'typescript/no-deprecated': 'error',\n 'typescript/no-duplicate-enum-values': 'error',\n 'typescript/no-duplicate-type-constituents': 'error',\n 'typescript/no-dynamic-delete': 'error',\n 'typescript/no-empty-object-type': [\n 'error',\n {\n allowInterfaces: 'with-single-extends',\n },\n ],\n 'typescript/no-explicit-any': 'error',\n 'typescript/no-extra-non-null-assertion': 'error',\n 'typescript/no-extraneous-class': 'error',\n 'typescript/no-floating-promises': 'error',\n 'typescript/no-for-in-array': 'error',\n 'typescript/no-implied-eval': 'error',\n 'typescript/no-import-type-side-effects': 'error',\n 'typescript/no-inferrable-types': 'error',\n 'typescript/no-invalid-void-type': 'error',\n 'typescript/no-meaningless-void-operator': 'error',\n 'typescript/no-misused-new': 'error',\n 'typescript/no-misused-promises': [\n 'error',\n {\n checksVoidReturn: false,\n },\n ],\n 'typescript/no-misused-spread': 'error',\n 'typescript/no-mixed-enums': 'error',\n 'typescript/no-namespace': 'error',\n 'typescript/no-non-null-asserted-nullish-coalescing': 'error',\n 'typescript/no-non-null-asserted-optional-chain': 'error',\n 'typescript/no-non-null-assertion': 'error',\n 'typescript/no-redundant-type-constituents': 'error',\n 'typescript/no-require-imports': 'error',\n 'typescript/no-restricted-types': 'error',\n 'typescript/no-this-alias': 'error',\n 'typescript/no-unnecessary-boolean-literal-compare': 'error',\n 'typescript/no-unnecessary-condition': 'error',\n 'typescript/no-unnecessary-parameter-property-assignment': 'error',\n 'typescript/no-unnecessary-template-expression': 'error',\n 'typescript/no-unnecessary-type-arguments': 'error',\n 'typescript/no-unnecessary-type-assertion': 'error',\n 'typescript/no-unnecessary-type-constraint': 'error',\n 'typescript/no-unnecessary-type-conversion': 'error',\n 'typescript/no-unnecessary-type-parameters': 'error',\n 'typescript/no-unsafe-argument': 'error',\n 'typescript/no-unsafe-assignment': 'error',\n 'typescript/no-unsafe-call': 'error',\n 'typescript/no-unsafe-declaration-merging': 'error',\n 'typescript/no-unsafe-enum-comparison': 'error',\n 'typescript/no-unsafe-function-type': 'error',\n 'typescript/no-unsafe-member-access': 'error',\n 'typescript/no-unsafe-return': 'error',\n 'typescript/no-unsafe-unary-minus': 'error',\n 'typescript/no-useless-default-assignment': 'error',\n 'typescript/no-useless-empty-export': 'error',\n 'typescript/no-wrapper-object-types': 'error',\n 'typescript/non-nullable-type-assertion-style': 'error',\n 'typescript/only-throw-error': [\n 'error',\n {\n allow: [\n {\n from: 'package',\n package: '@tanstack/router-core',\n name: 'Redirect',\n },\n ],\n },\n ],\n 'typescript/prefer-as-const': 'error',\n 'typescript/prefer-enum-initializers': 'error',\n 'typescript/prefer-find': 'error',\n 'typescript/prefer-for-of': 'error',\n 'typescript/prefer-function-type': 'error',\n 'typescript/prefer-includes': 'error',\n 'typescript/prefer-literal-enum-member': 'error',\n 'typescript/prefer-namespace-keyword': 'error',\n 'typescript/prefer-nullish-coalescing': 'error',\n 'typescript/prefer-optional-chain': 'error',\n 'typescript/prefer-promise-reject-errors': 'error',\n 'typescript/prefer-reduce-type-parameter': 'error',\n 'typescript/prefer-regexp-exec': 'error',\n 'typescript/prefer-return-this-type': 'error',\n 'typescript/prefer-string-starts-ends-with': 'error',\n 'typescript/promise-function-async': 'error',\n 'typescript/related-getter-setter-pairs': 'error',\n 'typescript/require-array-sort-compare': 'error',\n 'typescript/require-await': 'error',\n 'typescript/restrict-plus-operands': [\n 'error',\n {\n allowAny: false,\n allowBoolean: false,\n allowNullish: false,\n allowNumberAndString: false,\n allowRegExp: false,\n },\n ],\n 'typescript/restrict-template-expressions': [\n 'error',\n {\n allowNumber: true,\n },\n ],\n 'typescript/return-await': ['error', 'error-handling-correctness-only'],\n 'typescript/switch-exhaustiveness-check': 'error',\n 'typescript/triple-slash-reference': 'error',\n 'typescript/unbound-method': 'error',\n 'typescript/unified-signatures': 'error',\n 'typescript/use-unknown-in-catch-callback-variable': 'error',\n },\n },\n {\n files: ['**/*.d.ts'],\n plugins: ['typescript'],\n rules: {\n // Similar to the above rule, interfaces support index signatures only when\n // we define object types with them.\n 'typescript/consistent-indexed-object-style': 'off',\n // We sometimes need to use `interface` in declaration files,\n // especially when we want to extend from a type from another package,\n // and that type is an interface.\n 'typescript/consistent-type-definitions': 'off',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const unicorn = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['unicorn'],\n rules: {\n 'unicorn/catch-error-name': 'error',\n 'unicorn/consistent-assert': 'error',\n 'unicorn/consistent-date-clone': 'error',\n 'unicorn/consistent-empty-array-spread': 'error',\n 'unicorn/consistent-existence-index-check': 'error',\n 'unicorn/consistent-function-scoping': 'error',\n 'unicorn/consistent-template-literal-escape': 'error',\n 'unicorn/empty-brace-spaces': 'error',\n 'unicorn/error-message': 'error',\n 'unicorn/escape-case': 'error',\n 'unicorn/explicit-length-check': 'error',\n 'unicorn/filename-case': 'error',\n 'unicorn/import-style': 'error',\n 'unicorn/new-for-builtins': 'error',\n 'unicorn/no-abusive-eslint-disable': 'error',\n 'unicorn/no-accessor-recursion': 'error',\n 'unicorn/no-anonymous-default-export': 'error',\n 'unicorn/no-array-callback-reference': 'error',\n 'unicorn/no-array-for-each': 'error',\n 'unicorn/no-array-method-this-argument': 'error',\n 'unicorn/no-array-reduce': 'error',\n 'unicorn/no-array-reverse': 'error',\n 'unicorn/no-array-sort': 'error',\n 'unicorn/no-await-expression-member': 'error',\n 'unicorn/no-await-in-promise-methods': 'error',\n 'unicorn/no-console-spaces': 'error',\n 'unicorn/no-empty-file': 'error',\n 'unicorn/no-hex-escape': 'error',\n 'unicorn/no-immediate-mutation': 'error',\n 'unicorn/no-instanceof-builtins': 'error',\n 'unicorn/no-invalid-fetch-options': 'error',\n 'unicorn/no-invalid-remove-event-listener': 'error',\n 'unicorn/no-lonely-if': 'error',\n 'unicorn/no-magic-array-flat-depth': 'error',\n 'unicorn/no-negated-condition': 'error',\n 'unicorn/no-negation-in-equality-check': 'error',\n 'unicorn/no-nested-ternary': 'error',\n 'unicorn/no-new-array': 'error',\n 'unicorn/no-new-buffer': 'error',\n 'unicorn/no-object-as-default-parameter': 'error',\n 'unicorn/no-process-exit': 'error',\n 'unicorn/no-single-promise-in-promise-methods': 'error',\n 'unicorn/no-static-only-class': 'error',\n 'unicorn/no-thenable': 'error',\n 'unicorn/no-this-assignment': 'error',\n 'unicorn/no-typeof-undefined': 'error',\n 'unicorn/no-unnecessary-array-flat-depth': 'error',\n 'unicorn/no-unnecessary-array-splice-count': 'error',\n 'unicorn/no-unnecessary-await': 'error',\n 'unicorn/no-unnecessary-slice-end': 'error',\n 'unicorn/no-unreadable-array-destructuring': 'error',\n 'unicorn/no-unreadable-iife': 'error',\n 'unicorn/no-useless-collection-argument': 'error',\n 'unicorn/no-useless-error-capture-stack-trace': 'error',\n 'unicorn/no-useless-fallback-in-spread': 'error',\n 'unicorn/no-useless-iterator-to-array': 'error',\n 'unicorn/no-useless-length-check': 'error',\n 'unicorn/no-useless-promise-resolve-reject': 'error',\n 'unicorn/no-useless-spread': 'error',\n 'unicorn/no-useless-switch-case': 'error',\n 'unicorn/no-useless-undefined': 'error',\n 'unicorn/no-zero-fractions': 'error',\n 'unicorn/number-literal-case': 'error',\n 'unicorn/numeric-separators-style': 'error',\n 'unicorn/prefer-add-event-listener': 'error',\n 'unicorn/prefer-array-find': 'error',\n 'unicorn/prefer-array-flat': 'error',\n 'unicorn/prefer-array-flat-map': 'error',\n 'unicorn/prefer-array-index-of': 'error',\n 'unicorn/prefer-array-some': 'error',\n 'unicorn/prefer-at': 'error',\n 'unicorn/prefer-bigint-literals': 'error',\n 'unicorn/prefer-blob-reading-methods': 'error',\n 'unicorn/prefer-class-fields': 'error',\n 'unicorn/prefer-classlist-toggle': 'error',\n 'unicorn/prefer-code-point': 'error',\n 'unicorn/prefer-date-now': 'error',\n 'unicorn/prefer-default-parameters': 'error',\n 'unicorn/prefer-dom-node-append': 'error',\n 'unicorn/prefer-dom-node-dataset': 'error',\n 'unicorn/prefer-dom-node-remove': 'error',\n 'unicorn/prefer-dom-node-text-content': 'error',\n 'unicorn/prefer-event-target': 'error',\n 'unicorn/prefer-export-from': 'error',\n 'unicorn/prefer-global-this': 'error',\n 'unicorn/prefer-includes': 'error',\n 'unicorn/prefer-keyboard-event-key': 'error',\n 'unicorn/prefer-logical-operator-over-ternary': 'error',\n 'unicorn/prefer-math-min-max': 'error',\n 'unicorn/prefer-math-trunc': 'error',\n 'unicorn/prefer-modern-dom-apis': 'error',\n 'unicorn/prefer-modern-math-apis': 'error',\n 'unicorn/prefer-module': 'error',\n 'unicorn/prefer-native-coercion-functions': 'error',\n 'unicorn/prefer-negative-index': 'error',\n 'unicorn/prefer-node-protocol': 'error',\n 'unicorn/prefer-number-properties': 'error',\n 'unicorn/prefer-object-from-entries': 'error',\n 'unicorn/prefer-optional-catch-binding': 'error',\n 'unicorn/prefer-prototype-methods': 'error',\n 'unicorn/prefer-query-selector': 'error',\n 'unicorn/prefer-reflect-apply': 'error',\n 'unicorn/prefer-regexp-test': 'error',\n 'unicorn/prefer-response-static-json': 'error',\n 'unicorn/prefer-set-has': 'error',\n 'unicorn/prefer-set-size': 'error',\n 'unicorn/prefer-single-call': 'error',\n 'unicorn/prefer-spread': 'error',\n 'unicorn/prefer-string-replace-all': 'error',\n 'unicorn/prefer-string-slice': 'error',\n 'unicorn/prefer-string-starts-ends-with': 'error',\n 'unicorn/prefer-string-trim-start-end': 'error',\n 'unicorn/prefer-structured-clone': 'error',\n 'unicorn/prefer-ternary': 'error',\n 'unicorn/prefer-top-level-await': 'error',\n 'unicorn/prefer-type-error': 'error',\n 'unicorn/relative-url-style': 'error',\n 'unicorn/require-array-join-separator': 'error',\n 'unicorn/require-module-attributes': 'error',\n 'unicorn/require-module-specifiers': 'error',\n 'unicorn/require-number-to-fixed-digits-argument': 'error',\n 'unicorn/switch-case-braces': 'error',\n 'unicorn/switch-case-break-position': 'error',\n 'unicorn/text-encoding-identifier-case': [\n 'error',\n {\n withDash: true,\n },\n ],\n 'unicorn/throw-new-error': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\nimport type { VitestConfig } from '../types/vitest'\n\nexport const vitest = (config: VitestConfig): OxlintOverride[] => [\n {\n files: config.files,\n plugins: ['vitest'],\n rules: {\n 'vitest/consistent-test-it': [\n 'error',\n {\n fn: 'test',\n },\n ],\n 'vitest/expect-expect': 'error',\n 'vitest/hoisted-apis-on-top': 'off',\n 'vitest/no-commented-out-tests': 'error',\n 'vitest/no-conditional-expect': 'error',\n 'vitest/no-conditional-tests': 'off',\n 'vitest/no-disabled-tests': 'error',\n 'vitest/no-focused-tests': 'error',\n 'vitest/no-identical-title': 'error',\n 'vitest/no-import-node-test': 'error',\n 'vitest/no-interpolation-in-snapshots': 'error',\n 'vitest/no-mocks-import': 'error',\n 'vitest/no-standalone-expect': 'error',\n 'vitest/no-unneeded-async-expect-function': 'error',\n 'vitest/prefer-called-exactly-once-with': 'error',\n 'vitest/prefer-mock-return-shorthand': 'error',\n 'vitest/prefer-snapshot-hint': 'off',\n 'vitest/require-awaited-expect-poll': 'off',\n 'vitest/require-local-test-context-for-concurrent-snapshots': 'error',\n 'vitest/require-mock-type-parameters': 'off',\n 'vitest/require-to-throw-message': 'off',\n 'vitest/valid-describe-callback': 'error',\n 'vitest/valid-expect': 'error',\n 'vitest/valid-expect-in-promise': 'error',\n 'vitest/valid-title': 'error',\n 'vitest/warn-todo': 'error',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const zod = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-import-zod'],\n rules: {\n 'import-zod/prefer-zod-namespace': 'error',\n },\n },\n]\n","import type { OxlintConfig } from 'oxlint'\nimport type { DefineConfigOptions } from './types'\n\nimport { mergeWith, pick } from 'es-toolkit/object'\nimport { isPackageExists } from 'local-pkg'\n\nimport { command } from './configs/command'\nimport { deMorgan } from './configs/de-morgan'\nimport { eslint } from './configs/eslint'\nimport { importSort } from './configs/import-sort'\nimport { imports } from './configs/imports'\nimport { jsdoc } from './configs/jsdoc'\nimport { jsxA11y } from './configs/jsx-a11y'\nimport { nelsonlaidev } from './configs/nelsonlaidev'\nimport { nextjs } from './configs/nextjs'\nimport { node } from './configs/node'\nimport { oxc } from './configs/oxc'\nimport { playwright } from './configs/playwright'\nimport { promise } from './configs/promise'\nimport { react } from './configs/react'\nimport { regexp } from './configs/regexp'\nimport { sonarjs } from './configs/sonarjs'\nimport { stylistic } from './configs/stylistic'\nimport { tailwindcss } from './configs/tailwindcss'\nimport { typescript } from './configs/typescript'\nimport { unicorn } from './configs/unicorn'\nimport { vitest } from './configs/vitest'\nimport { zod } from './configs/zod'\nimport { betterTailwindcssDefaultSelectors } from './generated/plugin-snapshots'\n\ntype BetterTailwindcssSelectorKind = 'attribute' | 'variable'\n\nconst createSelectors = (names: string[], kind: BetterTailwindcssSelectorKind) =>\n names.map((name) => ({\n name,\n kind,\n match: [{ type: 'strings' }, { type: 'objectValues' }],\n }))\n\nconst concatArrays = (target: unknown, source: unknown) => {\n if (Array.isArray(target) && Array.isArray(source)) {\n return [...(target as unknown[]), ...(source as unknown[])]\n }\n // mergeWith requires explicit undefined for default behavior\n // eslint-disable-next-line unicorn/no-useless-undefined\n return undefined\n}\n\nexport const defineConfig = ({ config = {}, custom: userConfig = {} }: DefineConfigOptions = {}): OxlintConfig => {\n const overrides = [\n ...oxc(),\n ...eslint(),\n ...command(),\n ...typescript(),\n ...unicorn(),\n ...promise(),\n ...node(),\n ...jsxA11y(),\n ...imports(),\n ...jsdoc(),\n ...nelsonlaidev(),\n ...stylistic(),\n ...deMorgan(),\n ...zod(),\n ...regexp(),\n ...sonarjs(),\n ...importSort(),\n ]\n\n if (userConfig.react ?? isPackageExists('react')) {\n overrides.push(...react())\n }\n\n if (userConfig.nextjs ?? isPackageExists('next')) {\n overrides.push(...nextjs())\n }\n\n if (userConfig.vitest) {\n overrides.push(...vitest(userConfig.vitest))\n }\n\n if (userConfig.playwright) {\n overrides.push(...playwright(userConfig.playwright))\n }\n\n if (userConfig.tailwindcss) {\n overrides.push(...tailwindcss(userConfig.tailwindcss))\n }\n\n return mergeWith<OxlintConfig, OxlintConfig>(\n {\n options: {\n typeAware: true,\n maxWarnings: 0,\n denyWarnings: true,\n reportUnusedDisableDirectives: 'error',\n },\n env: {\n node: true,\n browser: true,\n es2022: true,\n },\n ignorePatterns: ['**/routeTree.gen.ts'],\n overrides,\n settings: {\n 'jsx-a11y': {\n components: {\n Button: 'button',\n Image: 'img',\n Input: 'input',\n Textarea: 'textarea',\n Link: 'a',\n },\n },\n ...(userConfig.tailwindcss && {\n 'better-tailwindcss': {\n detectComponentClasses: false,\n rootFontSize: 16,\n selectors: [\n ...betterTailwindcssDefaultSelectors,\n ...createSelectors(['classNames', '.+ClassNames'], 'attribute'),\n ...createSelectors(['.+ClassName', '.+ClassNames'], 'variable'),\n ],\n },\n }),\n },\n },\n {\n ...config,\n settings: {\n ...config.settings,\n ...(userConfig.tailwindcss && {\n 'better-tailwindcss': pick(userConfig.tailwindcss, [\n 'entryPoint',\n 'tailwindConfig',\n 'tsconfig',\n 'detectComponentClasses',\n 'rootFontSize',\n 'messageStyle',\n 'selectors',\n ]),\n }),\n },\n },\n concatArrays,\n )\n}\n"],"mappings":";;;AAAA,MAAa,eAAe;AAC5B,MAAa,WAAW,QAAQ;AAEhC,MAAa,UAAU;AACvB,MAAa,WAAW;AAExB,MAAa,UAAU;AACvB,MAAa,WAAW;;;ACHxB,MAAa,gBAAkC,CAC7C;CACE,OAAO,CAAC,SAAS;CACjB,WAAW,CAAC,wBAAwB;CACpC,OAAO,EACL,mBAAmB,SACpB;CACF,CACF;;;ACRD,MAAa,iBAAmC,CAC9C;CACE,OAAO,CAAC,SAAS;CACjB,WAAW,CAAC,0BAA0B;CACtC,OAAO;EACL,oCAAoC;EACpC,oCAAoC;EACrC;CACF,CACF;;;ACND,MAAa,eAAiC,CAC5C;CACE,OAAO,CAAC,SAAS;CACjB,SAAS,CAAC,SAAS;CACnB,OAAO;EACL,yBAAyB;EACzB,qBAAqB;EACrB,QAAQ;EACR,iBAAiB;EACjB,iBAAiB;EACjB,YAAY;EACZ,6BAA6B;EAC7B,oBAAoB;EACpB,aAAa;EACb,wBAAwB;EACxB,mBAAmB;EACnB,uBAAuB;EACvB,kBAAkB;EAClB,mBAAmB;EACnB,iCAAiC;EACjC,yBAAyB;EACzB,oBAAoB;EACpB,eAAe;EACf,iBAAiB;EACjB,yBAAyB;EACzB,mBAAmB;EACnB,gBAAgB;EAChB,qBAAqB;EACrB,YAAY;EACZ,4BAA4B;EAC5B,oBAAoB;EACpB,yBAAyB;EACzB,WAAW;EACX,gBAAgB;EAChB,iBAAiB;EACjB,yBAAyB;EACzB,kBAAkB;EAClB,kBAAkB;EAClB,oBAAoB;EACpB,oBAAoB;EACpB,qBAAqB;EACrB,2BAA2B;EAC3B,eAAe;EACf,gBAAgB;EAChB,aAAa;EACb,kBAAkB;EAClB,wBAAwB;EACxB,iCAAiC;EACjC,UAAU;EACV,eAAe;EACf,gCAAgC;EAChC,8BAA8B;EAC9B,gBAAgB;EAChB,qBAAqB;EACrB,eAAe,CACb,SACA,EACE,2BAA2B,MAC5B,CACF;EACD,8BAA8B;EAC9B,yBAAyB;EACzB,gBAAgB;EAChB,mBAAmB;EACnB,oBAAoB;EACpB,iBAAiB;EACjB,kBAAkB;EAClB,mBAAmB;EACnB,gBAAgB;EAChB,oBAAoB;EACpB,8BAA8B;EAC9B,oBAAoB;EACpB,+BAA+B;EAC/B,wBAAwB;EACxB,sBAAsB;EACtB,YAAY;EACZ,2BAA2B;EAC3B,uBAAuB;EACvB,kBAAkB;EAClB,qBAAqB;EACrB,sBAAsB;EACtB,+BAA+B;EAC/B,yBAAyB;EACzB,oBAAoB;EACpB,mCAAmC;EACnC,kBAAkB,CAChB,SACA,EACE,KAAK,EACH,SAAS,YACV,EACF,CACF;EACD,yBAAyB;EACzB,4BAA4B;EAC5B,mBAAmB;EACnB,oBAAoB;EACpB,2BAA2B;EAC3B,qBAAqB;EACrB,qBAAqB;EACrB,qBAAqB;EACrB,qBAAqB;EACrB,UAAU;EACV,WAAW,CACT,SACA,EACE,kBAAkB,MACnB,CACF;EACD,WAAW;EACX,yBAAyB;EACzB,wBAAwB;EACxB,mBAAmB;EACnB,yBAAyB;EACzB,iBAAiB;EACjB,sBAAsB;EACtB,aAAa;EACb,gBAAgB;EACjB;CACF,CACF;;;AC3HD,MAAa,mBAAqC,CAChD;CACE,OAAO,CAAC,SAAS;CACjB,WAAW,CAAC;EAAE,MAAM;EAAe,WAAW;EAAoC,CAAC;CACnF,OAAO;EACL,uBAAuB,CACrB,SACA,EACE,QAAQ;GACN,CAAC,WAAW;GAEZ;IAAC;IAAoB;IAAoB;IAA2B;IAAqB;IAAiB;GAE1G,CAAC,SAAS;GAEV,CAAC,SAAS;GAEV;IAAC;IAAO;IAAO;IAAQ;GAEvB,CAAC,WAAW,OAAO;GACpB,EACF,CACF;EACD,uBAAuB;EACxB;CACF,CACF;;;ACvBD,MAAa,gBAAkC,CAC7C;CACE,OAAO,CAAC,SAAS;CACjB,SAAS,CAAC,SAAS;CACnB,OAAO;EACL,0CAA0C;EAC1C,kBAAkB;EAClB,iBAAiB;EACjB,gBAAgB;EAChB,oBAAoB;EACpB,+BAA+B,CAC7B,SACA,EACE,OAAO,GACR,CACF;EACD,2BAA2B;EAC3B,iBAAiB;EACjB,sCAAsC;EACtC,sBAAsB;EACtB,wBAAwB;EACxB,6BAA6B;EAC7B,gCAAgC;EAChC,6BAA6B;EAC7B,2BAA2B;EAC3B,yBAAyB;EACzB,mCAAmC;EACpC;CACF,CACF;;;AC7BD,MAAa,cAAgC,CAC3C;CACE,OAAO,CAAC,SAAS;CACjB,SAAS,CAAC,QAAQ;CAClB,OAAO;EACL,8BAA8B;EAC9B,yBAAyB;EACzB,oBAAoB;EACpB,+BAA+B;EAC/B,qBAAqB;EACrB,0BAA0B;EAC1B,sCAAsC;EACtC,+BAA+B;EAC/B,+BAA+B;EAC/B,wBAAwB;EACzB;CACF,CACF;;;ACjBD,MAAa,gBAAkC,CAC7C;CACE,OAAO,CAAC,SAAS;CACjB,SAAS,CAAC,WAAW;CACrB,OAAO;EACL,qBAAqB;EACrB,+BAA+B;EAC/B,4BAA4B,CAC1B,SACA;GACE,YAAY,CAAC,OAAO;GACpB,aAAa,CAAC,KAAK;GACnB,SAAS;IAAC;IAAU;IAAe;IAAe;GACnD,CACF;EACD,+CAA+C;EAC/C,uBAAuB;EACvB,2BAA2B;EAC3B,sBAAsB;EACtB,sCAAsC;EACtC,+BAA+B;EAC/B,yCAAyC;EACzC,yCAAyC;EACzC,gCAAgC;EAChC,0BAA0B;EAC1B,6BAA6B;EAC7B,8BAA8B;EAC9B,uCAAuC,CACrC,SACA,EACE,UAAU;GAAC;GAAU;GAAY;GAAQ;GAAa;GAAc;GAAU;GAAU,EACzF,CACF;EACD,yCAAyC;EACzC,iBAAiB;EACjB,8BAA8B;EAC9B,yCAAyC;EACzC,0BAA0B;EAC1B,wCAAwC;EACxC,yBAAyB;EACzB,oCAAoC;EACpC,0DAA0D,CACxD,SACA;GACE,IAAI,CAAC,QAAQ,eAAe;GAC5B,QAAQ,CAAC,MAAM;GAChB,CACF;EACD,mDAAmD,CACjD,SACA;GACE,UAAU;IAAC;IAAW;IAAW;IAAU;IAAe;IAAa;IAAc;IAAa;IAAU;GAC5G,OAAO;IAAC;IAAW;IAAa;IAAa;GAC7C,MAAM,CAAC,WAAW,SAAS;GAC3B,QAAQ;IAAC;IAAW;IAAa;IAAa;GAC9C,QAAQ,CAAC,WAAW,SAAS;GAC7B,KAAK,CAAC,WAAW,SAAS;GAC3B,CACF;EACD,0DAA0D,CACxD,SACA;GACE,IAAI;IAAC;IAAW;IAAQ;IAAW;IAAc;IAAW;IAAQ;IAAW;GAC/E,IAAI;IAAC;IAAW;IAAQ;IAAW;IAAc;IAAW;IAAQ;IAAW;GAC/E,IAAI;IAAC;IAAY;IAAiB;IAAoB;IAAU;IAAO;IAAO;IAAW;GACzF,OAAO,CAAC,OAAO;GACf,IAAI,CAAC,WAAW;GAChB,UAAU,CAAC,cAAc,eAAe;GACzC,CACF;EACD,uCAAuC,CACrC,SACA;GACE,MAAM,EAAE;GACR,OAAO,CAAC,WAAW;GACnB,uBAAuB;GACxB,CACF;EACD,+BAA+B;EAC/B,2CAA2C,CACzC,SACA;GACE,uBAAuB;GACvB,UAAU;IAAC;IAAW;IAAe;IAAa;IAAc;IAAa;IAAU;GACxF,CACF;EACD,iCAAiC;EACjC,yCAAyC;EACzC,qCAAqC;EACrC,kBAAkB;EAClB,iCAAiC;EAClC;CACF,CACF;;;AChGD,MAAa,qBAAuC,CAClD;CACE,OAAO,CAAC,SAAS;CACjB,WAAW,CAAC;EAAE,MAAM;EAAgB,WAAW;EAA+B,CAAC;CAC/E,OAAO;EACL,mCAAmC;EACnC,uCAAuC;EACvC,wCAAwC;EACxC,2CAA2C;EAC3C,sCAAsC;EACvC;CACF,CACF;;;ACTD,MAAa,eAAiC,CAC5C;CACE,OAAO,CAAC,SAAS;CACjB,SAAS,CAAC,SAAS;CACnB,OAAO;EACL,8BAA8B;EAC9B,iCAAiC;EACjC,2BAA2B;EAC3B,6BAA6B;EAC7B,oCAAoC;EACpC,oCAAoC;EACpC,wDAAwD;EACxD,sBAAsB;EACtB,qCAAqC;EACrC,4BAA4B;EAC5B,0BAA0B;EAC1B,qCAAqC;EACrC,iCAAiC;EACjC,yBAAyB;EACzB,8BAA8B;EAC9B,sCAAsC;EACtC,oCAAoC;EACpC,0BAA0B;EAC1B,oCAAoC;EACpC,mBAAmB;EACnB,iCAAiC;EAClC;CACF,CACF;;;AC5BD,MAAa,aAA+B,CAC1C;CACE,OAAO,CAAC,SAAS;CACjB,SAAS,CAAC,OAAO;CACjB,OAAO;EACL,0BAA0B;EAC1B,uBAAuB;EACxB;CACF,CACF;;;ACZD,MAAa,YAA8B,CACzC;CACE,OAAO,CAAC,SAAS;CACjB,SAAS,CAAC,MAAM;CAChB,OAAO;EACL,mBAAmB;EACnB,iCAAiC;EACjC,wBAAwB;EACxB,0BAA0B;EAC1B,2BAA2B;EAC3B,oBAAoB;EACpB,iCAAiC;EACjC,uBAAuB;EACvB,qBAAqB;EACrB,sBAAsB;EACtB,cAAc;EACd,2BAA2B;EAC3B,iBAAiB;EACjB,0BAA0B;EAC1B,8BAA8B;EAC9B,kBAAkB;EAClB,iBAAiB;EACjB,gCAAgC;EAChC,2BAA2B;EAC3B,0BAA0B;EAC1B,4BAA4B;EAC7B;CACF,CACF;;;ACxBD,MAAa,mCAAmC;CAC9C,8BAA8B;CAC9B,+BAA+B;CAC/B,iCAAiC;CACjC,wBAAwB;CACxB,6BAA6B;CAC7B,2CAA2C;CAC3C,oCAAoC;CACpC,4BAA4B;CAC5B,uBAAuB;CACvB,oBAAoB;CACpB,mCAAmC;CACnC,gCAAgC;CAChC,sBAAsB;CACtB,mCAAmC;CACnC,kCAAkC;CAClC,sBAAsB;CACtB,sBAAsB;CACvB;AAED,MAAa,gBAAgB;CAC3B,0CAA0C;CAC1C,kCAAkC;CAClC,iCAAiC;CACjC,8BAA8B;CAC9B,6CAA6C;CAC7C,oCAAoC;CACpC,mCAAmC;CACnC,sCAAsC;CACtC,iCAAiC;CACjC,kCAAkC;CAClC,sCAAsC;CACtC,oCAAoC;CACpC,kCAAkC;CAClC,yCAAyC;CACzC,iDAAiD;CACjD,0CAA0C;CAC1C,qCAAqC;CACrC,+BAA+B;CAC/B,0CAA0C;CAC1C,kCAAkC;CAClC,gCAAgC;CAChC,mDAAmD;CACnD,iDAAiD;CACjD,gCAAgC;CAChC,gDAAgD;CAChD,iDAAiD;CACjD,uDAAuD;CACvD,sDAAsD;CACtD,qDAAqD;CACrD,sDAAsD;CACtD,uDAAuD;CACvD,6CAA6C;CAC7C,yCAAyC;CACzC,2CAA2C;CAC3C,gDAAgD;CAChD,wDAAwD;CACxD,iDAAiD;CACjD,2CAA2C;CAC3C,2CAA2C;CAC3C,mDAAmD;CACnD,iCAAiC;CACjC,gCAAgC;CAChC,iDAAiD;CACjD,yCAAyC;CACzC,wBAAwB;CACxB,sBAAsB;CACtB,gCAAgC;CAChC,qCAAqC;CACrC,qCAAqC;CACrC,oCAAoC;CACpC,0BAA0B;CAC1B,2BAA2B;CAC3B,sCAAsC;CACtC,oDAAoD;CACpD,0CAA0C;CAC1C,uCAAuC;CACvC,kCAAkC;CAClC,yCAAyC;CACzC,yCAAyC;CACzC,kDAAkD;CAClD,gEAAgE;CAChE,sCAAsC;CACtC,mCAAmC;CACnC,gCAAgC;CAChC,4CAA4C;CAC5C,+CAA+C;CAC/C,+BAA+B;CAC/B,4CAA4C;CAC5C,mCAAmC;CACnC,0CAA0C;CAC1C,yCAAyC;CACzC,8CAA8C;CAC9C,4CAA4C;CAC5C,uCAAuC;CACvC,oDAAoD;CACpD,6CAA6C;CAC7C,kDAAkD;CAClD,4CAA4C;CAC5C,mDAAmD;CACnD,2CAA2C;CAC3C,gDAAgD;CAChD,2CAA2C;CAC3C,4CAA4C;CAC7C;AAED,MAAa,sCAAsC;CACjD,+BAA+B;CAC/B,8BAA8B;CAC9B,wCAAwC;CACxC,gCAAgC;CAChC,4BAA4B;CAC5B,sBAAsB;CACtB,oBAAoB;CACpB,mCAAmC;CACnC,mCAAmC;CACnC,iCAAiC;CACjC,kCAAkC;CAClC,wBAAwB;CACzB;AAED,MAAa,6BAA6B;CACxC,oBAAoB;CACpB,gDAAgD;CAChD,4BAA4B;CAC5B,kCAAkC;CAClC,uCAAuC;CACvC,oCAAoC;CACpC,qCAAqC;CACrC,iCAAiC;CACjC,gCAAgC;CAChC,gCAAgC;CAChC,sBAAsB;CACtB,8BAA8B;CAC9B,8BAA8B;CAC9B,6BAA6B;CAC7B,6BAA6B;CAC7B,4BAA4B;CAC5B,8BAA8B;CAC9B,mCAAmC;CACnC,mCAAmC;CACnC,iCAAiC;CACjC,+BAA+B;CAC/B,6BAA6B;CAC7B,qCAAqC;CACrC,mCAAmC;CACnC,kCAAkC;CAClC,oCAAoC;CACpC,kCAAkC;CAClC,6BAA6B;CAC7B,mCAAmC;CACnC,oCAAoC;CACpC,0CAA0C;CAC1C,sCAAsC;CACtC,2BAA2B;CAC3B,sCAAsC;CACtC,8BAA8B;CAC9B,0BAA0B;CAC3B;AAED,MAAa,yBAAyB;CACpC,oBAAoB;CACpB,iCAAiC;CACjC,mBAAmB;CACnB,yBAAyB;CACzB,qBAAqB;CACrB,4BAA4B;CAC5B,4BAA4B;CAC5B,+BAA+B;CAC/B,mCAAmC;CACnC,oBAAoB;CACpB,mBAAmB;CACnB,0CAA0C;CAC1C,6CAA6C;CAC7C,+BAA+B;CAC/B,+BAA+B;CAC/B,mCAAmC;CACnC,mCAAmC;CACnC,yBAAyB;CACzB,yCAAyC;CACzC,kCAAkC;CAClC,8BAA8B;CAC9B,yCAAyC;CACzC,4BAA4B;CAC5B,iCAAiC;CACjC,uBAAuB;CACvB,6BAA6B;CAC7B,wCAAwC;CACxC,0CAA0C;CAC1C,4BAA4B;CAC5B,+BAA+B;CAC/B,2BAA2B;CAC3B,gCAAgC;CAChC,+CAA+C;CAC/C,uCAAuC;CACvC,wCAAwC;CACxC,yCAAyC;CACzC,oCAAoC;CACpC,gCAAgC;CAChC,mCAAmC;CACnC,qCAAqC;CACrC,yCAAyC;CACzC,4BAA4B;CAC5B,0BAA0B;CAC1B,0BAA0B;CAC1B,yCAAyC;CACzC,gCAAgC;CAChC,2BAA2B;CAC3B,iCAAiC;CACjC,oCAAoC;CACpC,yCAAyC;CACzC,6BAA6B;CAC7B,wCAAwC;CACxC,2CAA2C;CAC3C,iCAAiC;CACjC,mBAAmB;CACnB,iCAAiC;CACjC,sCAAsC;CACtC,qCAAqC;CACrC,uBAAuB;CACvB,+BAA+B;CAC/B,iCAAiC;CACjC,2CAA2C;CAC3C,mBAAmB;CACnB,kCAAkC;CAClC,qBAAqB;CACrB,iBAAiB;CACjB,0BAA0B;CAC3B;AAED,MAAa,0BAA0B;CACrC,yBAAyB;CACzB,sBAAsB;CACtB,qBAAqB;CACrB,kBAAkB;CAClB,yBAAyB;CACzB,yBAAyB;CACzB,6BAA6B;CAC7B,+BAA+B;CAC/B,0BAA0B;CAC1B,+BAA+B;CAC/B,8CAA8C;CAC9C,kCAAkC;CAClC,4BAA4B;CAC5B,wCAAwC;CACxC,8BAA8B;CAC9B,6BAA6B;CAC7B,iCAAiC;CACjC,oCAAoC;CACpC,qBAAqB;CACrB,gCAAgC;CAChC,gCAAgC;CAChC,wCAAwC;CACxC,yBAAyB;CACzB,qBAAqB;CACrB,oBAAoB;CACpB,oCAAoC;CACpC,uCAAuC;CACvC,+BAA+B;CAC/B,mCAAmC;CACnC,qCAAqC;CACrC,sCAAsC;CACtC,wBAAwB;CACxB,6BAA6B;CAC7B,2BAA2B;CAC3B,2BAA2B;CAC3B,0BAA0B;CAC1B,kCAAkC;CAClC,uBAAuB;CACvB,8BAA8B;CAC9B,4BAA4B;CAC5B,0BAA0B;CAC1B,mCAAmC;CACnC,gCAAgC;CAChC,qBAAqB;CACrB,gDAAgD;CAChD,iCAAiC;CACjC,6BAA6B;CAC7B,6BAA6B;CAC7B,4CAA4C;CAC5C,iCAAiC;CACjC,kBAAkB;CAClB,iCAAiC;CACjC,4BAA4B;CAC5B,oCAAoC;CACpC,4BAA4B;CAC5B,wCAAwC;CACxC,yBAAyB;CACzB,mCAAmC;CACnC,kCAAkC;CAClC,uBAAuB;CACvB,qCAAqC;CACrC,kCAAkC;CAClC,+BAA+B;CAC/B,kCAAkC;CAClC,uBAAuB;CACvB,2BAA2B;CAC3B,gCAAgC;CAChC,gCAAgC;CAChC,mCAAmC;CACnC,8BAA8B;CAC9B,6BAA6B;CAC7B,8BAA8B;CAC9B,2BAA2B;CAC3B,yBAAyB;CACzB,mCAAmC;CACnC,4BAA4B;CAC5B,iCAAiC;CACjC,gCAAgC;CAChC,4BAA4B;CAC5B,gCAAgC;CAChC,iCAAiC;CACjC,iCAAiC;CACjC,qCAAqC;CACrC,wBAAwB;CACxB,4BAA4B;CAC5B,oCAAoC;CACpC,yCAAyC;CACzC,+CAA+C;CAC/C,+BAA+B;CAC/B,8BAA8B;CAC9B,4BAA4B;CAC5B,0BAA0B;CAC1B,iCAAiC;CACjC,4BAA4B;CAC5B,wBAAwB;CACxB,2BAA2B;CAC3B,gCAAgC;CAChC,oCAAoC;CACpC,0BAA0B;CAC1B,+BAA+B;CAC/B,yBAAyB;CACzB,8BAA8B;CAC9B,uCAAuC;CACvC,8BAA8B;CAC9B,iCAAiC;CACjC,sCAAsC;CACtC,sCAAsC;CACtC,wCAAwC;CACxC,uCAAuC;CACvC,6BAA6B;CAC7B,2BAA2B;CAC3B,2CAA2C;CAC3C,gCAAgC;CAChC,qCAAqC;CACrC,2BAA2B;CAC3B,mCAAmC;CACnC,gCAAgC;CAChC,iCAAiC;CACjC,oCAAoC;CACpC,6BAA6B;CAC7B,sCAAsC;CACtC,wCAAwC;CACxC,oBAAoB;CACpB,mCAAmC;CACnC,6CAA6C;CAC7C,+CAA+C;CAC/C,gCAAgC;CAChC,yBAAyB;CACzB,kCAAkC;CAClC,yCAAyC;CACzC,wCAAwC;CACxC,gCAAgC;CAChC,mCAAmC;CACnC,8BAA8B;CAC9B,sCAAsC;CACtC,oCAAoC;CACpC,mCAAmC;CACnC,uCAAuC;CACvC,6BAA6B;CAC7B,gCAAgC;CAChC,mCAAmC;CACnC,uCAAuC;CACvC,8BAA8B;CAC9B,gCAAgC;CAChC,kCAAkC;CAClC,+BAA+B;CAC/B,oCAAoC;CACpC,6BAA6B;CAC7B,0BAA0B;CAC1B,8BAA8B;CAC9B,oCAAoC;CACpC,mCAAmC;CACnC,oBAAoB;CACpB,wBAAwB;CACxB,gBAAgB;CAChB,4BAA4B;CAC5B,+BAA+B;CAC/B,wBAAwB;CACxB,qCAAqC;CACrC,0BAA0B;CAC1B,iCAAiC;CACjC,uCAAuC;CACvC,oCAAoC;CACpC,sBAAsB;CACtB,iCAAiC;CACjC,mBAAmB;CACnB,8BAA8B;CAC9B,0BAA0B;CAC1B,kCAAkC;CAClC,2BAA2B;CAC3B,gBAAgB;CAChB,kCAAkC;CAClC,kCAAkC;CAClC,wBAAwB;CACxB,8BAA8B;CAC9B,kCAAkC;CAClC,8BAA8B;CAC9B,mCAAmC;CACnC,yCAAyC;CACzC,+BAA+B;CAC/B,kCAAkC;CAClC,0BAA0B;CAC1B,oCAAoC;CACpC,8BAA8B;CAC9B,wBAAwB;CACxB,wBAAwB;CACxB,0BAA0B;CAC1B,uCAAuC;CACvC,mCAAmC;CACnC,4BAA4B;CAC5B,2BAA2B;CAC3B,yBAAyB;CACzB,8BAA8B;CAC9B,qCAAqC;CACrC,4CAA4C;CAC5C,yBAAyB;CACzB,mCAAmC;CACnC,4BAA4B;CAC5B,2CAA2C;CAC3C,6BAA6B;CAC7B,sBAAsB;CACtB,6BAA6B;CAC7B,+BAA+B;CAC/B,mCAAmC;CACnC,+BAA+B;CAC/B,yCAAyC;CACzC,yCAAyC;CACzC,gCAAgC;CAChC,sCAAsC;CACtC,iCAAiC;CACjC,gCAAgC;CAChC,wBAAwB;CACxB,oCAAoC;CACpC,wCAAwC;CACxC,8BAA8B;CAC9B,4BAA4B;CAC5B,sCAAsC;CACtC,uCAAuC;CACvC,oCAAoC;CACpC,wCAAwC;CACxC,0CAA0C;CAC1C,iCAAiC;CACjC,0CAA0C;CAC1C,uCAAuC;CACvC,kCAAkC;CAClC,yCAAyC;CACzC,4CAA4C;CAC5C,wCAAwC;CACxC,wCAAwC;CACxC,8CAA8C;CAC9C,0CAA0C;CAC1C,iCAAiC;CACjC,4BAA4B;CAC5B,2BAA2B;CAC3B,sCAAsC;CACtC,2BAA2B;CAC3B,kCAAkC;CAClC,qCAAqC;CACrC,0BAA0B;CAC1B,+BAA+B;CAC/B,qCAAqC;CACrC,0BAA0B;CAC1B,yBAAyB;CACzB,4CAA4C;CAC5C,gCAAgC;CAChC,8BAA8B;CAC9B,uCAAuC;CACvC,gCAAgC;CAChC,kCAAkC;CAClC,qCAAqC;CACrC,uBAAuB;CACvB,kCAAkC;CAClC,8BAA8B;CAC9B,+BAA+B;CAC/B,kCAAkC;CAClC,2BAA2B;CAC3B,gCAAgC;CAChC,gCAAgC;CAChC,sCAAsC;CACtC,6CAA6C;CAC7C,+CAA+C;CAC/C,mCAAmC;CACnC,mCAAmC;CACnC,iCAAiC;CACjC,+BAA+B;CAC/B,mCAAmC;CACnC,yCAAyC;CACzC,8BAA8B;CAC/B;AAED,MAAa,oCAAoC;CAC/C;EACE,MAAM;EACN,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,EACD,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,EACD,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,EACD,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,EACD;GACE,OAAO,CACL,EACE,MAAM,WACP,CACF;GACD,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,EACD;GACE,OAAO,CACL,EA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"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/globs.ts","../src/configs/command.ts","../src/configs/de-morgan.ts","../src/configs/eslint.ts","../src/configs/import-sort.ts","../src/configs/imports.ts","../src/configs/jsdoc.ts","../src/configs/jsx-a11y.ts","../src/configs/nelsonlaidev.ts","../src/configs/nextjs.ts","../src/configs/node.ts","../src/configs/oxc.ts","../src/generated/plugin-snapshots.ts","../src/configs/playwright.ts","../src/configs/promise.ts","../src/utils.ts","../src/configs/react.ts","../src/configs/regexp.ts","../src/configs/sonarjs.ts","../src/configs/stylistic.ts","../src/configs/tailwindcss.ts","../src/configs/typescript.ts","../src/configs/unicorn.ts","../src/configs/vitest.ts","../src/configs/zod.ts","../src/base.ts"],"sourcesContent":["export const GLOB_SRC_EXT = '{js,jsx,ts,tsx,cjs,cts,mjs,mts}'\nexport const GLOB_SRC = `**/*.${GLOB_SRC_EXT}`\n\nexport const GLOB_JS = '**/*.{js,cjs,mjs}'\nexport const GLOB_JSX = '**/*.{jsx,cjsx,mjsx}'\n\nexport const GLOB_TS = '**/*.{ts,cts,mts}'\nexport const GLOB_TSX = '**/*.{tsx,ctsx,mtsx}'\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const command = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-command'],\n rules: {\n 'command/command': 'error',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const deMorgan = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-de-morgan'],\n rules: {\n 'de-morgan/no-negated-conjunction': 'error',\n 'de-morgan/no-negated-disjunction': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const eslint = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['eslint'],\n rules: {\n 'array-callback-return': 'error',\n 'constructor-super': 'error',\n eqeqeq: 'error',\n 'for-direction': 'error',\n 'getter-return': 'error',\n 'no-alert': 'error',\n 'no-async-promise-executor': 'error',\n 'no-await-in-loop': 'error',\n 'no-caller': 'off',\n 'no-case-declarations': 'error',\n 'no-class-assign': 'error',\n 'no-compare-neg-zero': 'error',\n 'no-cond-assign': 'error',\n 'no-const-assign': 'error',\n 'no-constant-binary-expression': 'error',\n 'no-constant-condition': 'error',\n 'no-control-regex': 'error',\n 'no-debugger': 'error',\n 'no-delete-var': 'error',\n 'no-dupe-class-members': 'error',\n 'no-dupe-else-if': 'error',\n 'no-dupe-keys': 'error',\n 'no-duplicate-case': 'error',\n 'no-empty': 'error',\n 'no-empty-character-class': 'error',\n 'no-empty-pattern': 'error',\n 'no-empty-static-block': 'error',\n 'no-eval': 'error',\n 'no-ex-assign': 'error',\n 'no-extra-bind': 'error',\n 'no-extra-boolean-cast': 'error',\n 'no-fallthrough': 'error',\n 'no-func-assign': 'error',\n 'no-global-assign': 'error',\n 'no-import-assign': 'error',\n 'no-invalid-regexp': 'error',\n 'no-irregular-whitespace': 'error',\n 'no-iterator': 'off',\n 'no-label-var': 'error',\n 'no-labels': 'error',\n 'no-lone-blocks': 'error',\n 'no-loss-of-precision': 'error',\n 'no-misleading-character-class': 'error',\n 'no-new': 'error',\n 'no-new-func': 'error',\n 'no-new-native-nonconstructor': 'error',\n 'no-nonoctal-decimal-escape': 'error',\n 'no-obj-calls': 'error',\n 'no-param-reassign': 'error',\n 'no-plusplus': [\n 'error',\n {\n allowForLoopAfterthoughts: true,\n },\n ],\n 'no-promise-executor-return': 'error',\n 'no-prototype-builtins': 'error',\n 'no-redeclare': 'error',\n 'no-regex-spaces': 'error',\n 'no-return-assign': 'error',\n 'no-script-url': 'error',\n 'no-self-assign': 'error',\n 'no-self-compare': 'error',\n 'no-sequences': 'error',\n 'no-setter-return': 'error',\n 'no-shadow-restricted-names': 'error',\n 'no-sparse-arrays': 'error',\n 'no-template-curly-in-string': 'error',\n 'no-this-before-super': 'error',\n 'no-unassigned-vars': 'error',\n 'no-undef': 'error',\n 'no-unexpected-multiline': 'error',\n 'no-unneeded-ternary': 'error',\n 'no-unreachable': 'error',\n 'no-unsafe-finally': 'error',\n 'no-unsafe-negation': 'error',\n 'no-unsafe-optional-chaining': 'error',\n 'no-unused-expressions': 'off',\n 'no-unused-labels': 'error',\n 'no-unused-private-class-members': 'error',\n 'no-unused-vars': [\n 'error',\n {\n fix: {\n imports: 'safe-fix',\n },\n },\n ],\n 'no-useless-assignment': 'error',\n 'no-useless-backreference': 'error',\n 'no-useless-call': 'error',\n 'no-useless-catch': 'error',\n 'no-useless-computed-key': 'error',\n 'no-useless-concat': 'error',\n 'no-useless-escape': 'error',\n 'no-useless-rename': 'error',\n 'no-useless-return': 'error',\n 'no-var': 'error',\n 'no-void': [\n 'error',\n {\n allowAsStatement: true,\n },\n ],\n 'no-with': 'error',\n 'prefer-object-has-own': 'error',\n 'prefer-object-spread': 'error',\n 'prefer-template': 'error',\n 'preserve-caught-error': 'error',\n 'require-yield': 'error',\n 'symbol-description': 'error',\n 'use-isnan': 'error',\n 'valid-typeof': 'error',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const importSort = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: [{ name: 'import-sort', specifier: 'eslint-plugin-simple-import-sort' }],\n rules: {\n 'import-sort/imports': [\n 'error',\n {\n groups: [\n ['^\\\\u0000'],\n\n ['^node:.*\\\\u0000$', '^@?\\\\w.*\\\\u0000$', '^(@/|~/|[^.]).*\\\\u0000$', '^\\\\.\\\\..*\\\\u0000$', '^\\\\..*\\\\u0000$'],\n\n ['^node:'],\n\n ['^@?\\\\w'],\n\n ['^@/', '^~/', '^[^.]'],\n\n ['^\\\\.\\\\.', '^\\\\.'],\n ],\n },\n ],\n 'import-sort/exports': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const imports = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['import'],\n rules: {\n 'import/consistent-type-specifier-style': 'error',\n 'import/default': 'error',\n 'import/export': 'error',\n 'import/first': 'error',\n 'import/namespace': 'error',\n 'import/newline-after-import': [\n 'error',\n {\n count: 1,\n },\n ],\n 'import/no-absolute-path': 'error',\n 'import/no-amd': 'error',\n 'import/no-anonymous-default-export': 'error',\n 'import/no-commonjs': 'error',\n 'import/no-duplicates': 'error',\n 'import/no-dynamic-require': 'error',\n 'import/no-empty-named-blocks': 'error',\n 'import/no-mutable-exports': 'error',\n 'import/no-named-default': 'error',\n 'import/no-self-import': 'error',\n 'import/no-webpack-loader-syntax': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const jsdoc = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['jsdoc'],\n rules: {\n 'jsdoc/check-property-names': 'off',\n 'jsdoc/check-tag-names': 'error',\n 'jsdoc/empty-tags': 'error',\n 'jsdoc/implements-on-classes': 'off',\n 'jsdoc/no-defaults': 'off',\n 'jsdoc/require-property': 'off',\n 'jsdoc/require-property-description': 'off',\n 'jsdoc/require-property-name': 'off',\n 'jsdoc/require-property-type': 'off',\n 'jsdoc/require-yields': 'off',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const jsxA11y = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['jsx-a11y'],\n rules: {\n 'jsx-a11y/alt-text': 'error',\n 'jsx-a11y/anchor-has-content': 'error',\n 'jsx-a11y/anchor-is-valid': [\n 'error',\n {\n components: ['Link'],\n specialLink: ['to'],\n aspects: ['noHref', 'invalidHref', 'preferButton'],\n },\n ],\n 'jsx-a11y/aria-activedescendant-has-tabindex': 'error',\n 'jsx-a11y/aria-props': 'error',\n 'jsx-a11y/aria-proptypes': 'error',\n 'jsx-a11y/aria-role': 'error',\n 'jsx-a11y/aria-unsupported-elements': 'error',\n 'jsx-a11y/autocomplete-valid': 'error',\n 'jsx-a11y/click-events-have-key-events': 'error',\n 'jsx-a11y/control-has-associated-label': 'off',\n 'jsx-a11y/heading-has-content': 'error',\n 'jsx-a11y/html-has-lang': 'error',\n 'jsx-a11y/iframe-has-title': 'error',\n 'jsx-a11y/img-redundant-alt': 'error',\n 'jsx-a11y/interactive-supports-focus': [\n 'error',\n {\n tabbable: ['button', 'checkbox', 'link', 'searchbox', 'spinbutton', 'switch', 'textbox'],\n },\n ],\n 'jsx-a11y/label-has-associated-control': 'error',\n 'jsx-a11y/lang': 'error',\n 'jsx-a11y/media-has-caption': 'error',\n 'jsx-a11y/mouse-events-have-key-events': 'error',\n 'jsx-a11y/no-access-key': 'error',\n 'jsx-a11y/no-aria-hidden-on-focusable': 'error',\n 'jsx-a11y/no-autofocus': 'error',\n 'jsx-a11y/no-distracting-elements': 'error',\n 'jsx-a11y/no-interactive-element-to-noninteractive-role': [\n 'error',\n {\n tr: ['none', 'presentation'],\n canvas: ['img'],\n },\n ],\n 'jsx-a11y/no-noninteractive-element-interactions': [\n 'error',\n {\n handlers: ['onClick', 'onError', 'onLoad', 'onMouseDown', 'onMouseUp', 'onKeyPress', 'onKeyDown', 'onKeyUp'],\n alert: ['onKeyUp', 'onKeyDown', 'onKeyPress'],\n body: ['onError', 'onLoad'],\n dialog: ['onKeyUp', 'onKeyDown', 'onKeyPress'],\n iframe: ['onError', 'onLoad'],\n img: ['onError', 'onLoad'],\n },\n ],\n 'jsx-a11y/no-noninteractive-element-to-interactive-role': [\n 'error',\n {\n ul: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],\n ol: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],\n li: ['menuitem', 'menuitemradio', 'menuitemcheckbox', 'option', 'row', 'tab', 'treeitem'],\n table: ['grid'],\n td: ['gridcell'],\n fieldset: ['radiogroup', 'presentation'],\n },\n ],\n 'jsx-a11y/no-noninteractive-tabindex': [\n 'error',\n {\n tags: [],\n roles: ['tabpanel'],\n allowExpressionValues: true,\n },\n ],\n 'jsx-a11y/no-redundant-roles': 'error',\n 'jsx-a11y/no-static-element-interactions': [\n 'error',\n {\n allowExpressionValues: true,\n handlers: ['onClick', 'onMouseDown', 'onMouseUp', 'onKeyPress', 'onKeyDown', 'onKeyUp'],\n },\n ],\n 'jsx-a11y/prefer-tag-over-role': 'off',\n 'jsx-a11y/role-has-required-aria-props': 'error',\n 'jsx-a11y/role-supports-aria-props': 'error',\n 'jsx-a11y/scope': 'error',\n 'jsx-a11y/tabindex-no-positive': 'error',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const nelsonlaidev = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: [{ name: 'nelsonlaidev', specifier: '@nelsonlaidev/eslint-plugin' }],\n rules: {\n 'nelsonlaidev/lucide-icon-suffix': 'error',\n 'nelsonlaidev/lucide-restrict-import': 'error',\n 'nelsonlaidev/shadcn-cn-wrap-variants': 'error',\n 'nelsonlaidev/shadcn-cva-variants-suffix': 'error',\n 'nelsonlaidev/shadcn-prefer-spinner': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const nextjs = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['nextjs'],\n rules: {\n 'nextjs/google-font-display': 'error',\n 'nextjs/google-font-preconnect': 'error',\n 'nextjs/inline-script-id': 'error',\n 'nextjs/next-script-for-ga': 'error',\n 'nextjs/no-assign-module-variable': 'error',\n 'nextjs/no-async-client-component': 'error',\n 'nextjs/no-before-interactive-script-outside-document': 'error',\n 'nextjs/no-css-tags': 'error',\n 'nextjs/no-document-import-in-page': 'error',\n 'nextjs/no-duplicate-head': 'error',\n 'nextjs/no-head-element': 'error',\n 'nextjs/no-head-import-in-document': 'error',\n 'nextjs/no-html-link-for-pages': 'error',\n 'nextjs/no-img-element': 'error',\n 'nextjs/no-page-custom-font': 'error',\n 'nextjs/no-script-component-in-head': 'error',\n 'nextjs/no-styled-jsx-in-document': 'error',\n 'nextjs/no-sync-scripts': 'error',\n 'nextjs/no-title-in-document-head': 'error',\n 'nextjs/no-typos': 'error',\n 'nextjs/no-unwanted-polyfillio': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const node = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['node'],\n rules: {\n 'node/no-exports-assign': 'error',\n 'node/no-path-concat': 'error',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const oxc = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['oxc'],\n rules: {\n 'approx-constant': 'error',\n 'bad-array-method-on-arguments': 'error',\n 'bad-bitwise-operator': 'error',\n 'bad-char-at-comparison': 'error',\n 'bad-comparison-sequence': 'error',\n 'bad-min-max-func': 'error',\n 'bad-object-literal-comparison': 'error',\n 'bad-replace-all-arg': 'error',\n 'const-comparisons': 'error',\n 'double-comparisons': 'error',\n 'erasing-op': 'error',\n 'misrefactored-assign-op': 'error',\n 'missing-throw': 'error',\n 'no-accumulating-spread': 'error',\n 'no-async-endpoint-handlers': 'error',\n 'no-barrel-file': 'error',\n 'no-const-enum': 'error',\n 'no-this-in-exported-function': 'error',\n 'number-arg-out-of-range': 'error',\n 'only-used-in-recursion': 'error',\n 'uninvoked-array-callback': 'error',\n },\n },\n]\n","// This file is generated by `scripts/generate-oxlint-plugin-snapshots.ts`.\n// Do not edit this file manually.\n// cspell:disable\n\nimport type { DummyRuleMap } from 'oxlint'\n\ntype BetterTailwindcssSelector = Record<string, unknown>\n\nexport const reactHooksRecommendedLatestRules = {\n 'react-hooks/rules-of-hooks': 'error',\n 'react-hooks/exhaustive-deps': 'warn',\n 'react-hooks/static-components': 'error',\n 'react-hooks/use-memo': 'error',\n 'react-hooks/void-use-memo': 'error',\n 'react-hooks/preserve-manual-memoization': 'error',\n 'react-hooks/incompatible-library': 'warn',\n 'react-hooks/immutability': 'error',\n 'react-hooks/globals': 'error',\n 'react-hooks/refs': 'error',\n 'react-hooks/set-state-in-effect': 'error',\n 'react-hooks/error-boundaries': 'error',\n 'react-hooks/purity': 'error',\n 'react-hooks/set-state-in-render': 'error',\n 'react-hooks/unsupported-syntax': 'warn',\n 'react-hooks/config': 'error',\n 'react-hooks/gating': 'error',\n} satisfies DummyRuleMap\n\nexport const reactAllRules = {\n '@eslint-react/component-hook-factories': 'error',\n '@eslint-react/error-boundaries': 'error',\n '@eslint-react/exhaustive-deps': 'warn',\n '@eslint-react/immutability': 'error',\n '@eslint-react/no-access-state-in-setstate': 'error',\n '@eslint-react/no-array-index-key': 'warn',\n '@eslint-react/no-children-count': 'warn',\n '@eslint-react/no-children-for-each': 'warn',\n '@eslint-react/no-children-map': 'warn',\n '@eslint-react/no-children-only': 'warn',\n '@eslint-react/no-children-to-array': 'warn',\n '@eslint-react/no-class-component': 'warn',\n '@eslint-react/no-clone-element': 'warn',\n '@eslint-react/no-component-will-mount': 'error',\n '@eslint-react/no-component-will-receive-props': 'error',\n '@eslint-react/no-component-will-update': 'error',\n '@eslint-react/no-context-provider': 'warn',\n '@eslint-react/no-create-ref': 'error',\n '@eslint-react/no-direct-mutation-state': 'error',\n '@eslint-react/no-duplicate-key': 'error',\n '@eslint-react/no-forward-ref': 'warn',\n '@eslint-react/no-missing-component-display-name': 'warn',\n '@eslint-react/no-missing-context-display-name': 'warn',\n '@eslint-react/no-missing-key': 'error',\n '@eslint-react/no-misused-capture-owner-stack': 'error',\n '@eslint-react/no-nested-component-definitions': 'error',\n '@eslint-react/no-nested-lazy-component-declarations': 'error',\n '@eslint-react/no-redundant-should-component-update': 'error',\n '@eslint-react/no-set-state-in-component-did-mount': 'warn',\n '@eslint-react/no-set-state-in-component-did-update': 'warn',\n '@eslint-react/no-set-state-in-component-will-update': 'warn',\n '@eslint-react/no-unnecessary-use-callback': 'warn',\n '@eslint-react/no-unnecessary-use-memo': 'warn',\n '@eslint-react/no-unnecessary-use-prefix': 'warn',\n '@eslint-react/no-unsafe-component-will-mount': 'warn',\n '@eslint-react/no-unsafe-component-will-receive-props': 'warn',\n '@eslint-react/no-unsafe-component-will-update': 'warn',\n '@eslint-react/no-unstable-context-value': 'warn',\n '@eslint-react/no-unstable-default-props': 'warn',\n '@eslint-react/no-unused-class-component-members': 'warn',\n '@eslint-react/no-unused-state': 'warn',\n '@eslint-react/no-use-context': 'warn',\n '@eslint-react/prefer-destructuring-assignment': 'warn',\n '@eslint-react/prefer-namespace-import': 'warn',\n '@eslint-react/purity': 'warn',\n '@eslint-react/refs': 'error',\n '@eslint-react/rules-of-hooks': 'error',\n '@eslint-react/set-state-in-effect': 'warn',\n '@eslint-react/set-state-in-render': 'error',\n '@eslint-react/unsupported-syntax': 'error',\n '@eslint-react/use-memo': 'error',\n '@eslint-react/use-state': 'warn',\n '@eslint-react/jsx-no-children-prop': 'warn',\n '@eslint-react/jsx-no-children-prop-with-children': 'error',\n '@eslint-react/jsx-no-comment-textnodes': 'warn',\n '@eslint-react/jsx-no-deoptimization': 'error',\n '@eslint-react/jsx-no-namespace': 'error',\n '@eslint-react/jsx-no-useless-fragment': 'warn',\n '@eslint-react/rsc-function-definition': 'error',\n '@eslint-react/dom-no-dangerously-set-innerhtml': 'warn',\n '@eslint-react/dom-no-dangerously-set-innerhtml-with-children': 'error',\n '@eslint-react/dom-no-find-dom-node': 'error',\n '@eslint-react/dom-no-flush-sync': 'error',\n '@eslint-react/dom-no-hydrate': 'error',\n '@eslint-react/dom-no-missing-button-type': 'warn',\n '@eslint-react/dom-no-missing-iframe-sandbox': 'warn',\n '@eslint-react/dom-no-render': 'error',\n '@eslint-react/dom-no-render-return-value': 'error',\n '@eslint-react/dom-no-script-url': 'warn',\n '@eslint-react/dom-no-string-style-prop': 'error',\n '@eslint-react/dom-no-unknown-property': 'warn',\n '@eslint-react/dom-no-unsafe-iframe-sandbox': 'warn',\n '@eslint-react/dom-no-unsafe-target-blank': 'warn',\n '@eslint-react/dom-no-use-form-state': 'warn',\n '@eslint-react/dom-no-void-elements-with-children': 'error',\n '@eslint-react/dom-prefer-namespace-import': 'warn',\n '@eslint-react/web-api-no-leaked-event-listener': 'warn',\n '@eslint-react/web-api-no-leaked-interval': 'warn',\n '@eslint-react/web-api-no-leaked-resize-observer': 'warn',\n '@eslint-react/web-api-no-leaked-timeout': 'warn',\n '@eslint-react/naming-convention-context-name': 'warn',\n '@eslint-react/naming-convention-id-name': 'warn',\n '@eslint-react/naming-convention-ref-name': 'warn',\n} satisfies DummyRuleMap\n\nexport const reactDisableConflictReactHooksRules = {\n 'react-hooks/exhaustive-deps': 'off',\n 'react-hooks/rules-of-hooks': 'off',\n 'react-hooks/component-hook-factories': 'off',\n 'react-hooks/error-boundaries': 'off',\n 'react-hooks/immutability': 'off',\n 'react-hooks/purity': 'off',\n 'react-hooks/refs': 'off',\n 'react-hooks/set-state-in-effect': 'off',\n 'react-hooks/set-state-in-render': 'off',\n 'react-hooks/static-components': 'off',\n 'react-hooks/unsupported-syntax': 'off',\n 'react-hooks/use-memo': 'off',\n} satisfies DummyRuleMap\n\nexport const playwrightRecommendedRules = {\n 'no-empty-pattern': 'off',\n 'playwright/consistent-spacing-between-blocks': 'warn',\n 'playwright/expect-expect': 'warn',\n 'playwright/max-nested-describe': 'warn',\n 'playwright/missing-playwright-await': 'error',\n 'playwright/no-conditional-expect': 'warn',\n 'playwright/no-conditional-in-test': 'warn',\n 'playwright/no-duplicate-hooks': 'warn',\n 'playwright/no-duplicate-slow': 'warn',\n 'playwright/no-element-handle': 'warn',\n 'playwright/no-eval': 'warn',\n 'playwright/no-focused-test': 'error',\n 'playwright/no-force-option': 'warn',\n 'playwright/no-nested-step': 'warn',\n 'playwright/no-networkidle': 'error',\n 'playwright/no-page-pause': 'warn',\n 'playwright/no-skipped-test': 'warn',\n 'playwright/no-standalone-expect': 'error',\n 'playwright/no-unsafe-references': 'error',\n 'playwright/no-unused-locators': 'error',\n 'playwright/no-useless-await': 'warn',\n 'playwright/no-useless-not': 'warn',\n 'playwright/no-wait-for-navigation': 'error',\n 'playwright/no-wait-for-selector': 'warn',\n 'playwright/no-wait-for-timeout': 'warn',\n 'playwright/prefer-hooks-in-order': 'warn',\n 'playwright/prefer-hooks-on-top': 'warn',\n 'playwright/prefer-locator': 'warn',\n 'playwright/prefer-to-have-count': 'warn',\n 'playwright/prefer-to-have-length': 'warn',\n 'playwright/prefer-web-first-assertions': 'error',\n 'playwright/valid-describe-callback': 'error',\n 'playwright/valid-expect': 'error',\n 'playwright/valid-expect-in-promise': 'error',\n 'playwright/valid-test-tags': 'error',\n 'playwright/valid-title': 'error',\n} satisfies DummyRuleMap\n\nexport const regexpRecommendedRules = {\n 'no-control-regex': 'error',\n 'no-misleading-character-class': 'error',\n 'no-regex-spaces': 'error',\n 'prefer-regex-literals': 'error',\n 'no-invalid-regexp': 'off',\n 'no-useless-backreference': 'off',\n 'no-empty-character-class': 'off',\n 'regexp/confusing-quantifier': 'warn',\n 'regexp/control-character-escape': 'error',\n 'regexp/match-any': 'error',\n 'regexp/negation': 'error',\n 'regexp/no-contradiction-with-assertion': 'error',\n 'regexp/no-dupe-characters-character-class': 'error',\n 'regexp/no-dupe-disjunctions': 'error',\n 'regexp/no-empty-alternative': 'warn',\n 'regexp/no-empty-capturing-group': 'error',\n 'regexp/no-empty-character-class': 'error',\n 'regexp/no-empty-group': 'error',\n 'regexp/no-empty-lookarounds-assertion': 'error',\n 'regexp/no-empty-string-literal': 'error',\n 'regexp/no-escape-backspace': 'error',\n 'regexp/no-extra-lookaround-assertions': 'error',\n 'regexp/no-invalid-regexp': 'error',\n 'regexp/no-invisible-character': 'error',\n 'regexp/no-lazy-ends': 'warn',\n 'regexp/no-legacy-features': 'error',\n 'regexp/no-misleading-capturing-group': 'error',\n 'regexp/no-misleading-unicode-character': 'error',\n 'regexp/no-missing-g-flag': 'error',\n 'regexp/no-non-standard-flag': 'error',\n 'regexp/no-obscure-range': 'error',\n 'regexp/no-optional-assertion': 'error',\n 'regexp/no-potentially-useless-backreference': 'warn',\n 'regexp/no-super-linear-backtracking': 'error',\n 'regexp/no-trivially-nested-assertion': 'error',\n 'regexp/no-trivially-nested-quantifier': 'error',\n 'regexp/no-unused-capturing-group': 'error',\n 'regexp/no-useless-assertions': 'error',\n 'regexp/no-useless-backreference': 'error',\n 'regexp/no-useless-character-class': 'error',\n 'regexp/no-useless-dollar-replacements': 'error',\n 'regexp/no-useless-escape': 'error',\n 'regexp/no-useless-flag': 'warn',\n 'regexp/no-useless-lazy': 'error',\n 'regexp/no-useless-non-capturing-group': 'error',\n 'regexp/no-useless-quantifier': 'error',\n 'regexp/no-useless-range': 'error',\n 'regexp/no-useless-set-operand': 'error',\n 'regexp/no-useless-string-literal': 'error',\n 'regexp/no-useless-two-nums-quantifier': 'error',\n 'regexp/no-zero-quantifier': 'error',\n 'regexp/optimal-lookaround-quantifier': 'warn',\n 'regexp/optimal-quantifier-concatenation': 'error',\n 'regexp/prefer-character-class': 'error',\n 'regexp/prefer-d': 'error',\n 'regexp/prefer-plus-quantifier': 'error',\n 'regexp/prefer-predefined-assertion': 'error',\n 'regexp/prefer-question-quantifier': 'error',\n 'regexp/prefer-range': 'error',\n 'regexp/prefer-set-operation': 'error',\n 'regexp/prefer-star-quantifier': 'error',\n 'regexp/prefer-unicode-codepoint-escapes': 'error',\n 'regexp/prefer-w': 'error',\n 'regexp/simplify-set-operations': 'error',\n 'regexp/sort-flags': 'error',\n 'regexp/strict': 'error',\n 'regexp/use-ignore-case': 'error',\n} satisfies DummyRuleMap\n\nexport const sonarjsRecommendedRules = {\n 'sonarjs/function-name': 'off',\n 'sonarjs/class-name': 'error',\n 'sonarjs/max-lines': 'off',\n 'sonarjs/no-tab': 'off',\n 'sonarjs/variable-name': 'off',\n 'sonarjs/comment-regex': 'off',\n 'sonarjs/no-commented-code': 'off',\n 'sonarjs/elseif-without-else': 'off',\n 'sonarjs/no-fallthrough': 'error',\n 'sonarjs/nested-control-flow': 'off',\n 'sonarjs/too-many-break-or-continue-in-loop': 'off',\n 'sonarjs/max-lines-per-function': 'off',\n 'sonarjs/no-nested-incdec': 'off',\n 'sonarjs/no-equals-in-for-termination': 'error',\n 'sonarjs/no-extra-arguments': 'error',\n 'sonarjs/no-collapsible-if': 'off',\n 'sonarjs/expression-complexity': 'off',\n 'sonarjs/no-redundant-parentheses': 'off',\n 'sonarjs/no-labels': 'error',\n 'sonarjs/no-nested-assignment': 'error',\n 'sonarjs/no-redundant-boolean': 'error',\n 'sonarjs/prefer-single-boolean-return': 'error',\n 'sonarjs/unused-import': 'error',\n 'sonarjs/fixme-tag': 'error',\n 'sonarjs/todo-tag': 'error',\n 'sonarjs/useless-string-operation': 'off',\n 'sonarjs/no-unused-function-argument': 'off',\n 'sonarjs/no-duplicate-string': 'off',\n 'sonarjs/no-case-label-in-switch': 'error',\n 'sonarjs/no-parameter-reassignment': 'error',\n 'sonarjs/no-floating-point-equality': 'error',\n 'sonarjs/prefer-while': 'error',\n 'sonarjs/no-sonar-comments': 'off',\n 'sonarjs/no-small-switch': 'error',\n 'sonarjs/no-hardcoded-ip': 'error',\n 'sonarjs/label-position': 'error',\n 'sonarjs/public-static-readonly': 'error',\n 'sonarjs/file-header': 'off',\n 'sonarjs/call-argument-line': 'error',\n 'sonarjs/max-switch-cases': 'error',\n 'sonarjs/no-unused-vars': 'error',\n 'sonarjs/prefer-immediate-return': 'off',\n 'sonarjs/function-inside-loop': 'error',\n 'sonarjs/code-eval': 'error',\n 'sonarjs/no-variable-usage-before-declaration': 'off',\n 'sonarjs/future-reserved-words': 'error',\n 'sonarjs/array-constructor': 'off',\n 'sonarjs/bitwise-operators': 'error',\n 'sonarjs/no-function-declaration-in-block': 'off',\n 'sonarjs/no-primitive-wrappers': 'error',\n 'sonarjs/for-in': 'off',\n 'sonarjs/cyclomatic-complexity': 'off',\n 'sonarjs/no-skipped-tests': 'error',\n 'sonarjs/no-identical-expressions': 'error',\n 'sonarjs/no-nested-switch': 'off',\n 'sonarjs/constructor-for-side-effects': 'error',\n 'sonarjs/no-dead-store': 'error',\n 'sonarjs/no-identical-conditions': 'error',\n 'sonarjs/no-duplicated-branches': 'error',\n 'sonarjs/deprecation': 'error',\n 'sonarjs/no-inverted-boolean-check': 'error',\n 'sonarjs/misplaced-loop-counter': 'error',\n 'sonarjs/no-nested-functions': 'error',\n 'sonarjs/no-hardcoded-passwords': 'error',\n 'sonarjs/sql-queries': 'error',\n 'sonarjs/insecure-cookie': 'error',\n 'sonarjs/no-useless-increment': 'error',\n 'sonarjs/no-globals-shadowing': 'error',\n 'sonarjs/no-undefined-assignment': 'off',\n 'sonarjs/no-empty-test-file': 'error',\n 'sonarjs/no-ignored-return': 'error',\n 'sonarjs/no-wildcard-import': 'off',\n 'sonarjs/arguments-order': 'error',\n 'sonarjs/pseudo-random': 'error',\n 'sonarjs/for-loop-increment-sign': 'error',\n 'sonarjs/null-dereference': 'error',\n 'sonarjs/no-selector-parameter': 'error',\n 'sonarjs/updated-loop-counter': 'error',\n 'sonarjs/block-scoped-var': 'error',\n 'sonarjs/no-built-in-override': 'off',\n 'sonarjs/prefer-object-literal': 'off',\n 'sonarjs/no-ignored-exceptions': 'error',\n 'sonarjs/no-gratuitous-expressions': 'error',\n 'sonarjs/file-uploads': 'error',\n 'sonarjs/file-permissions': 'error',\n 'sonarjs/no-empty-character-class': 'error',\n 'sonarjs/no-unenclosed-multiline-block': 'error',\n 'sonarjs/index-of-compare-to-positive-number': 'error',\n 'sonarjs/assertions-in-tests': 'error',\n 'sonarjs/no-implicit-global': 'error',\n 'sonarjs/no-useless-catch': 'error',\n 'sonarjs/xml-parser-xxe': 'error',\n 'sonarjs/non-existent-operator': 'error',\n 'sonarjs/web-sql-database': 'off',\n 'sonarjs/post-message': 'error',\n 'sonarjs/no-array-delete': 'error',\n 'sonarjs/no-alphabetical-sort': 'error',\n 'sonarjs/no-incomplete-assertions': 'error',\n 'sonarjs/no-global-this': 'error',\n 'sonarjs/new-operator-misuse': 'error',\n 'sonarjs/no-delete-var': 'error',\n 'sonarjs/strings-comparison': 'off',\n 'sonarjs/file-name-differ-from-class': 'off',\n 'sonarjs/cookie-no-httponly': 'error',\n 'sonarjs/no-nested-conditional': 'error',\n 'sonarjs/no-incorrect-string-concat': 'off',\n 'sonarjs/different-types-comparison': 'error',\n 'sonarjs/inverted-assertion-arguments': 'error',\n 'sonarjs/shorthand-property-grouping': 'off',\n 'sonarjs/updated-const-var': 'error',\n 'sonarjs/arguments-usage': 'off',\n 'sonarjs/destructuring-assignment-syntax': 'off',\n 'sonarjs/no-invariant-returns': 'error',\n 'sonarjs/arrow-function-convention': 'off',\n 'sonarjs/class-prototype': 'off',\n 'sonarjs/generator-without-yield': 'error',\n 'sonarjs/no-require-or-define': 'off',\n 'sonarjs/no-associative-arrays': 'error',\n 'sonarjs/comma-or-logical-or-case': 'error',\n 'sonarjs/no-redundant-jump': 'error',\n 'sonarjs/inconsistent-function-call': 'error',\n 'sonarjs/no-use-of-empty-return-value': 'error',\n 'sonarjs/void-use': 'error',\n 'sonarjs/operation-returning-nan': 'off',\n 'sonarjs/values-not-convertible-to-numbers': 'off',\n 'sonarjs/non-number-in-arithmetic-expression': 'off',\n 'sonarjs/cognitive-complexity': 'error',\n 'sonarjs/argument-type': 'error',\n 'sonarjs/in-operator-type-error': 'error',\n 'sonarjs/array-callback-without-return': 'error',\n 'sonarjs/declarations-in-global-scope': 'off',\n 'sonarjs/function-return-type': 'error',\n 'sonarjs/no-inconsistent-returns': 'off',\n 'sonarjs/no-reference-error': 'off',\n 'sonarjs/no-all-duplicated-branches': 'error',\n 'sonarjs/no-same-line-conditional': 'error',\n 'sonarjs/conditional-indentation': 'off',\n 'sonarjs/no-collection-size-mischeck': 'error',\n 'sonarjs/no-unthrown-error': 'error',\n 'sonarjs/no-unused-collection': 'error',\n 'sonarjs/no-os-command-from-path': 'error',\n 'sonarjs/no-misleading-array-reverse': 'error',\n 'sonarjs/no-for-in-iterable': 'off',\n 'sonarjs/no-element-overwrite': 'error',\n 'sonarjs/no-identical-functions': 'error',\n 'sonarjs/no-empty-collection': 'error',\n 'sonarjs/no-redundant-assignments': 'error',\n 'sonarjs/prefer-type-guard': 'error',\n 'sonarjs/use-type-alias': 'error',\n 'sonarjs/no-return-type-any': 'off',\n 'sonarjs/no-implicit-dependencies': 'off',\n 'sonarjs/no-useless-intersection': 'error',\n 'sonarjs/weak-ssl': 'error',\n 'sonarjs/no-weak-keys': 'error',\n 'sonarjs/csrf': 'error',\n 'sonarjs/production-debug': 'error',\n 'sonarjs/prefer-default-last': 'error',\n 'sonarjs/no-in-misuse': 'error',\n 'sonarjs/no-duplicate-in-composite': 'error',\n 'sonarjs/max-union-size': 'off',\n 'sonarjs/no-undefined-argument': 'error',\n 'sonarjs/no-nested-template-literals': 'error',\n 'sonarjs/prefer-promise-shorthand': 'error',\n 'sonarjs/os-command': 'off',\n 'sonarjs/no-redundant-optional': 'error',\n 'sonarjs/hashing': 'error',\n 'sonarjs/bool-param-default': 'off',\n 'sonarjs/no-try-promise': 'error',\n 'sonarjs/unverified-certificate': 'error',\n 'sonarjs/no-unsafe-unzip': 'off',\n 'sonarjs/cors': 'error',\n 'sonarjs/link-with-target-blank': 'error',\n 'sonarjs/disabled-auto-escaping': 'error',\n 'sonarjs/table-header': 'error',\n 'sonarjs/no-table-as-layout': 'error',\n 'sonarjs/table-header-reference': 'error',\n 'sonarjs/object-alt-content': 'error',\n 'sonarjs/no-clear-text-protocols': 'error',\n 'sonarjs/publicly-writable-directories': 'error',\n 'sonarjs/unverified-hostname': 'error',\n 'sonarjs/encryption-secure-mode': 'error',\n 'sonarjs/no-weak-cipher': 'error',\n 'sonarjs/no-intrusive-permissions': 'off',\n 'sonarjs/insecure-jwt-token': 'error',\n 'sonarjs/x-powered-by': 'error',\n 'sonarjs/hidden-files': 'off',\n 'sonarjs/content-length': 'error',\n 'sonarjs/disabled-resource-integrity': 'error',\n 'sonarjs/content-security-policy': 'error',\n 'sonarjs/no-mixed-content': 'off',\n 'sonarjs/frame-ancestors': 'off',\n 'sonarjs/no-mime-sniff': 'error',\n 'sonarjs/no-referrer-policy': 'error',\n 'sonarjs/strict-transport-security': 'error',\n 'sonarjs/confidential-information-logging': 'off',\n 'sonarjs/no-ip-forward': 'off',\n 'sonarjs/empty-string-repetition': 'error',\n 'sonarjs/regex-complexity': 'error',\n 'sonarjs/no-incompatible-assertion-types': 'error',\n 'sonarjs/anchor-precedence': 'error',\n 'sonarjs/slow-regex': 'error',\n 'sonarjs/no-invalid-regexp': 'error',\n 'sonarjs/unused-named-groups': 'error',\n 'sonarjs/no-same-argument-assert': 'error',\n 'sonarjs/unicode-aware-regex': 'off',\n 'sonarjs/no-misleading-character-class': 'error',\n 'sonarjs/duplicates-in-character-class': 'error',\n 'sonarjs/session-regeneration': 'error',\n 'sonarjs/prefer-specific-assertions': 'error',\n 'sonarjs/no-trivial-assertions': 'error',\n 'sonarjs/test-check-exception': 'error',\n 'sonarjs/stable-tests': 'error',\n 'sonarjs/no-empty-after-reluctant': 'error',\n 'sonarjs/single-character-alternation': 'error',\n 'sonarjs/no-code-after-done': 'error',\n 'sonarjs/disabled-timeout': 'error',\n 'sonarjs/chai-determinate-assertion': 'error',\n 'sonarjs/aws-s3-bucket-insecure-http': 'error',\n 'sonarjs/aws-s3-bucket-versioning': 'error',\n 'sonarjs/aws-s3-bucket-granted-access': 'error',\n 'sonarjs/no-angular-bypass-sanitization': 'error',\n 'sonarjs/aws-iam-public-access': 'error',\n 'sonarjs/aws-ec2-unencrypted-ebs-volume': 'error',\n 'sonarjs/aws-s3-bucket-public-access': 'error',\n 'sonarjs/aws-iam-all-privileges': 'error',\n 'sonarjs/aws-rds-unencrypted-databases': 'error',\n 'sonarjs/aws-iam-all-resources-accessible': 'off',\n 'sonarjs/aws-opensearchservice-domain': 'error',\n 'sonarjs/aws-iam-privilege-escalation': 'error',\n 'sonarjs/aws-sagemaker-unencrypted-notebook': 'error',\n 'sonarjs/aws-restricted-ip-admin-access': 'error',\n 'sonarjs/no-empty-alternatives': 'error',\n 'sonarjs/no-control-regex': 'error',\n 'sonarjs/no-regex-spaces': 'error',\n 'sonarjs/aws-sns-unencrypted-topics': 'error',\n 'sonarjs/existing-groups': 'error',\n 'sonarjs/aws-ec2-rds-dms-public': 'error',\n 'sonarjs/aws-sqs-unencrypted-queue': 'error',\n 'sonarjs/no-empty-group': 'error',\n 'sonarjs/aws-efs-unencrypted': 'error',\n 'sonarjs/aws-apigateway-public-api': 'error',\n 'sonarjs/stateful-regex': 'error',\n 'sonarjs/concise-regex': 'error',\n 'sonarjs/single-char-in-character-classes': 'error',\n 'sonarjs/no-hardcoded-secrets': 'error',\n 'sonarjs/no-exclusive-tests': 'error',\n 'sonarjs/hardcoded-secret-signatures': 'error',\n 'sonarjs/jsx-no-leaked-render': 'error',\n 'sonarjs/no-hook-setter-in-body': 'error',\n 'sonarjs/no-useless-react-setstate': 'error',\n 'sonarjs/no-uniq-key': 'error',\n 'sonarjs/redundant-type-aliases': 'error',\n 'sonarjs/prefer-regexp-exec': 'error',\n 'sonarjs/no-internal-api-use': 'error',\n 'sonarjs/prefer-read-only-props': 'error',\n 'sonarjs/no-literal-call': 'error',\n 'sonarjs/reduce-initial-value': 'error',\n 'sonarjs/no-async-constructor': 'error',\n 'sonarjs/review-blockchain-mnemonic': 'error',\n 'sonarjs/dynamically-constructed-templates': 'error',\n 'sonarjs/no-session-cookies-on-static-assets': 'error',\n 'sonarjs/dompurify-unsafe-config': 'error',\n 'sonarjs/no-duplicate-test-title': 'error',\n 'sonarjs/async-test-assertions': 'error',\n 'sonarjs/no-empty-test-title': 'error',\n 'sonarjs/hooks-before-test-cases': 'error',\n 'sonarjs/no-forced-browser-interaction': 'error',\n 'sonarjs/super-linear-regex': 'error',\n} satisfies DummyRuleMap\n\nexport const betterTailwindcssDefaultSelectors = [\n {\n kind: 'attribute',\n name: '^class(?:Name)?$',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^class(?:Name)?$',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^class:.*$',\n },\n {\n kind: 'attribute',\n name: '(?:^\\\\[class\\\\]$)|(?:^\\\\[ngClass\\\\]$)',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '(?:^\\\\[class\\\\..*\\\\]$)',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n {\n type: 'objectKeys',\n },\n ],\n name: '(?:^\\\\[class\\\\]$)|(?:^\\\\[ngClass\\\\]$)',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n {\n type: 'objectKeys',\n },\n ],\n name: '^v-bind:class$',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'strings',\n },\n {\n type: 'objectKeys',\n },\n ],\n name: '^class:list$',\n },\n {\n kind: 'attribute',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^classList$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^cc$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^cc$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^base$',\n type: 'objectValues',\n },\n ],\n name: '^clb$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^variants.*$',\n type: 'objectValues',\n },\n ],\n name: '^clb$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^compoundVariants\\\\[\\\\d+\\\\]\\\\.classes$',\n type: 'objectValues',\n },\n ],\n name: '^clb$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^clsx$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^clsx$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^cn$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^cn$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^cnb$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^cnb$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^ctl$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^cva$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^variants.*$',\n type: 'objectValues',\n },\n ],\n name: '^cva$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^compoundVariants\\\\[\\\\d+\\\\]\\\\.(?:className|class)$',\n type: 'objectValues',\n },\n ],\n name: '^cva$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^cx$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^cx$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^dcnb$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^dcnb$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'objectKeys',\n },\n ],\n name: '^objstr$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^variants.*$',\n type: 'objectValues',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^compoundVariants\\\\[\\\\d+\\\\]\\\\.(?:className|class).*$',\n type: 'objectValues',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^base$',\n type: 'objectValues',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^slots.*$',\n type: 'objectValues',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n path: '^compoundSlots\\\\[\\\\d+\\\\]\\\\.(?:className|class).*$',\n type: 'objectValues',\n },\n ],\n name: '^tv$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^twJoin$',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^twMerge$',\n },\n {\n kind: 'variable',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^classNames?$',\n },\n {\n kind: 'variable',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^classes$',\n },\n {\n kind: 'variable',\n match: [\n {\n type: 'strings',\n },\n ],\n name: '^styles?$',\n },\n {\n kind: 'tag',\n path: 'twc(\\\\.\\\\w+)?',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n {\n match: [\n {\n type: 'strings',\n },\n ],\n type: 'anonymousFunctionReturn',\n },\n ],\n path: '^twc\\\\.\\\\w+',\n },\n {\n kind: 'tag',\n path: 'twx(\\\\.\\\\w+)?',\n },\n {\n kind: 'callee',\n match: [\n {\n type: 'strings',\n },\n {\n match: [\n {\n type: 'strings',\n },\n ],\n type: 'anonymousFunctionReturn',\n },\n ],\n path: '^twx\\\\.\\\\w+',\n },\n] satisfies BetterTailwindcssSelector[]\n","import type { OxlintOverride } from 'oxlint'\nimport type { PlaywrightConfig } from '../types/playwright'\n\nimport { playwrightRecommendedRules } from '../generated/plugin-snapshots'\n\nexport const playwright = (config: PlaywrightConfig): OxlintOverride[] => [\n {\n files: config.files,\n jsPlugins: ['eslint-plugin-playwright'],\n rules: {\n ...playwrightRecommendedRules,\n\n 'playwright/expect-expect': [\n 'error',\n {\n assertFunctionNames: config.assertFunctionNames ?? [],\n assertFunctionPatterns: config.assertFunctionPatterns ?? [],\n },\n ],\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const promise = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['promise'],\n rules: {\n 'promise/always-return': 'error',\n 'promise/catch-or-return': 'error',\n 'promise/no-callback-in-promise': 'error',\n 'promise/no-multiple-resolved': 'error',\n 'promise/no-nesting': 'error',\n 'promise/no-new-statics': 'error',\n 'promise/no-promise-in-callback': 'error',\n 'promise/no-return-in-finally': 'error',\n 'promise/no-return-wrap': 'error',\n 'promise/param-names': 'error',\n 'promise/prefer-await-to-callbacks': 'error',\n 'promise/prefer-await-to-then': 'error',\n 'promise/prefer-catch': 'error',\n 'promise/spec-only': 'error',\n 'promise/valid-params': 'error',\n },\n },\n]\n","import type { DummyRuleMap } from 'oxlint'\n\nexport function remapRuleNames(rules: DummyRuleMap, from: string, to: string): DummyRuleMap {\n return Object.fromEntries(\n Object.entries(rules).map(([name, value]) => [name.startsWith(from) ? to + name.slice(from.length) : name, value]),\n )\n}\n\ntype Awaitable<T> = T | PromiseLike<T>\n\ntype InteropDefault<T> = T extends { default: infer U } ? U : T\n\nfunction hasDefault(value: unknown): value is { default: unknown } {\n return value !== null && (typeof value === 'object' || typeof value === 'function') && 'default' in value\n}\n\nexport async function interopDefault<T>(m: Awaitable<T>): Promise<InteropDefault<T>> {\n const resolved = await m\n\n if (hasDefault(resolved)) {\n return resolved.default as InteropDefault<T>\n }\n\n return resolved as InteropDefault<T>\n}\n","import type { OxlintOverride } from 'oxlint'\n\nimport {\n reactAllRules,\n reactDisableConflictReactHooksRules,\n reactHooksRecommendedLatestRules,\n} from '../generated/plugin-snapshots'\nimport { GLOB_SRC } from '../globs'\nimport { remapRuleNames } from '../utils'\n\nexport const react = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: [\n { name: '@eslint-react', specifier: '@eslint-react/eslint-plugin' },\n { name: 'react-hooks-js', specifier: 'eslint-plugin-react-hooks' },\n ],\n rules: {\n ...remapRuleNames(reactHooksRecommendedLatestRules, 'react-hooks', 'react-hooks-js'),\n\n ...reactAllRules,\n ...remapRuleNames(reactDisableConflictReactHooksRules, 'react-hooks', 'react-hooks-js'),\n\n '@eslint-react/immutability': 'error',\n '@eslint-react/refs': 'error',\n },\n },\n // Rules that require type information are not supported by Oxlint yet.\n // {\n // files: [GLOB_TS, GLOB_TSX],\n // rules: {\n // '@eslint-react/no-leaked-conditional-rendering': 'error',\n // '@eslint-react/no-unused-props': 'error',\n // },\n // },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { regexpRecommendedRules } from '../generated/plugin-snapshots'\nimport { GLOB_SRC } from '../globs'\n\nexport const regexp = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-regexp'],\n rules: {\n ...regexpRecommendedRules,\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { sonarjsRecommendedRules } from '../generated/plugin-snapshots'\nimport { GLOB_SRC } from '../globs'\n\nexport const sonarjs = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-sonarjs'],\n rules: {\n ...sonarjsRecommendedRules,\n\n // Disable due to poor performance\n // https://community.sonarsource.com/t/eslint-plugin-sonarjs-performance-issues-on-large-codebase/138392\n 'sonarjs/no-commented-code': 'off',\n 'sonarjs/deprecation': 'off',\n 'sonarjs/arguments-order': 'off',\n\n // Unnecessary\n 'sonarjs/pseudo-random': 'off',\n 'sonarjs/function-return-type': 'off',\n 'sonarjs/prefer-read-only-props': 'off',\n 'sonarjs/argument-type': 'off',\n 'sonarjs/cognitive-complexity': 'off',\n\n // Replaced by React rules\n 'sonarjs/jsx-no-leaked-render': 'off',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const stylistic = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['@stylistic/eslint-plugin'],\n rules: {\n '@stylistic/multiline-comment-style': ['error', 'separate-lines'],\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\nimport type { TailwindCSSConfig } from '../types'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const tailwindcss = (options: TailwindCSSConfig): OxlintOverride[] => {\n const disableShorthand = options.canonical?.logical ?? true\n\n return [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-better-tailwindcss'],\n rules: {\n 'better-tailwindcss/enforce-canonical-classes': [\n 'error',\n {\n collapse: options.canonical?.collapse ?? true,\n logical: options.canonical?.logical ?? true,\n },\n ],\n\n // Recommended to be disabled to avoid duplicate reports\n // when the canonical classes rule is enabled\n 'better-tailwindcss/enforce-consistent-important-position': 'off',\n 'better-tailwindcss/enforce-consistent-variable-syntax': 'off',\n 'better-tailwindcss/enforce-shorthand-classes': disableShorthand ? 'off' : 'error',\n\n 'better-tailwindcss/enforce-consistent-class-order': [\n 'error',\n {\n order: options.classOrder?.order ?? 'official',\n componentClassOrder: options.classOrder?.componentOrder ?? 'preserve',\n componentClassPosition: options.classOrder?.componentPosition ?? 'start',\n unknownClassOrder: options.classOrder?.unknownOrder ?? 'preserve',\n unknownClassPosition: options.classOrder?.unknownPosition ?? 'start',\n },\n ],\n\n 'better-tailwindcss/no-conflicting-classes': 'error',\n 'better-tailwindcss/no-deprecated-classes': 'error',\n 'better-tailwindcss/no-duplicate-classes': 'error',\n\n 'better-tailwindcss/no-restricted-classes': ['error', { restrict: options.restrict ?? [] }],\n 'better-tailwindcss/no-unknown-classes': ['error', { ignore: options.ignore ?? [] }],\n\n 'better-tailwindcss/no-unnecessary-whitespace': [\n 'error',\n { allowMultiline: options.whitespace?.allowMultiline ?? true },\n ],\n },\n },\n ]\n}\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const typescript = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['eslint', 'typescript'],\n rules: {\n 'eslint/class-methods-use-this': 'error',\n 'eslint/constructor-super': 'off',\n 'eslint/default-param-last': 'error',\n 'eslint/getter-return': 'off',\n 'eslint/no-array-constructor': 'error',\n 'eslint/no-class-assign': 'off',\n 'eslint/no-const-assign': 'off',\n 'eslint/no-dupe-class-members': 'off',\n 'eslint/no-dupe-keys': 'off',\n 'eslint/no-empty-function': 'error',\n 'eslint/no-func-assign': 'off',\n 'eslint/no-implied-eval': 'off',\n 'eslint/no-import-assign': 'off',\n 'eslint/no-loop-func': 'error',\n 'eslint/no-new-native-nonconstructor': 'off',\n 'eslint/no-obj-calls': 'off',\n 'eslint/no-redeclare': 'off',\n 'eslint/no-setter-return': 'off',\n 'eslint/no-shadow': 'error',\n 'eslint/no-this-before-super': 'off',\n 'eslint/no-throw-literal': 'off',\n 'eslint/no-undef': 'off',\n 'eslint/no-unreachable': 'off',\n 'eslint/no-unsafe-negation': 'off',\n 'eslint/no-unused-expressions': 'error',\n 'eslint/no-unused-vars': 'error',\n 'eslint/no-useless-constructor': 'error',\n 'eslint/no-var': 'error',\n 'eslint/no-with': 'off',\n 'eslint/prefer-const': 'error',\n 'eslint/prefer-promise-reject-errors': 'off',\n 'eslint/prefer-rest-params': 'error',\n 'eslint/prefer-spread': 'error',\n 'eslint/require-await': 'off',\n 'typescript/adjacent-overload-signatures': 'error',\n 'typescript/array-type': [\n 'error',\n {\n default: 'array-simple',\n readonly: 'array-simple',\n },\n ],\n 'typescript/await-thenable': 'error',\n 'typescript/ban-ts-comment': [\n 'error',\n {\n minimumDescriptionLength: 10,\n },\n ],\n 'typescript/ban-tslint-comment': 'error',\n 'typescript/class-literal-property-style': 'error',\n 'typescript/consistent-generic-constructors': 'error',\n 'typescript/consistent-indexed-object-style': 'error',\n 'typescript/consistent-type-assertions': 'error',\n 'typescript/consistent-type-definitions': ['error', 'type'],\n 'typescript/consistent-type-exports': [\n 'error',\n {\n fixMixedExportsWithInlineTypeSpecifier: false,\n },\n ],\n 'typescript/consistent-type-imports': [\n 'error',\n {\n prefer: 'type-imports',\n fixStyle: 'separate-type-imports',\n },\n ],\n 'typescript/dot-notation': 'error',\n 'typescript/no-array-delete': 'error',\n 'typescript/no-base-to-string': 'error',\n 'typescript/no-confusing-non-null-assertion': 'error',\n 'typescript/no-confusing-void-expression': 'error',\n 'typescript/no-deprecated': 'error',\n 'typescript/no-duplicate-enum-values': 'error',\n 'typescript/no-duplicate-type-constituents': 'error',\n 'typescript/no-dynamic-delete': 'error',\n 'typescript/no-empty-object-type': [\n 'error',\n {\n allowInterfaces: 'with-single-extends',\n },\n ],\n 'typescript/no-explicit-any': 'error',\n 'typescript/no-extra-non-null-assertion': 'error',\n 'typescript/no-extraneous-class': 'error',\n 'typescript/no-floating-promises': 'error',\n 'typescript/no-for-in-array': 'error',\n 'typescript/no-implied-eval': 'error',\n 'typescript/no-import-type-side-effects': 'error',\n 'typescript/no-inferrable-types': 'error',\n 'typescript/no-invalid-void-type': 'error',\n 'typescript/no-meaningless-void-operator': 'error',\n 'typescript/no-misused-new': 'error',\n 'typescript/no-misused-promises': [\n 'error',\n {\n checksVoidReturn: false,\n },\n ],\n 'typescript/no-misused-spread': 'error',\n 'typescript/no-mixed-enums': 'error',\n 'typescript/no-namespace': 'error',\n 'typescript/no-non-null-asserted-nullish-coalescing': 'error',\n 'typescript/no-non-null-asserted-optional-chain': 'error',\n 'typescript/no-non-null-assertion': 'error',\n 'typescript/no-redundant-type-constituents': 'error',\n 'typescript/no-require-imports': 'error',\n 'typescript/no-restricted-types': 'error',\n 'typescript/no-this-alias': 'error',\n 'typescript/no-unnecessary-boolean-literal-compare': 'error',\n 'typescript/no-unnecessary-condition': 'error',\n 'typescript/no-unnecessary-parameter-property-assignment': 'error',\n 'typescript/no-unnecessary-template-expression': 'error',\n 'typescript/no-unnecessary-type-arguments': 'error',\n 'typescript/no-unnecessary-type-assertion': 'error',\n 'typescript/no-unnecessary-type-constraint': 'error',\n 'typescript/no-unnecessary-type-conversion': 'error',\n 'typescript/no-unnecessary-type-parameters': 'error',\n 'typescript/no-unsafe-argument': 'error',\n 'typescript/no-unsafe-assignment': 'error',\n 'typescript/no-unsafe-call': 'error',\n 'typescript/no-unsafe-declaration-merging': 'error',\n 'typescript/no-unsafe-enum-comparison': 'error',\n 'typescript/no-unsafe-function-type': 'error',\n 'typescript/no-unsafe-member-access': 'error',\n 'typescript/no-unsafe-return': 'error',\n 'typescript/no-unsafe-unary-minus': 'error',\n 'typescript/no-useless-default-assignment': 'error',\n 'typescript/no-useless-empty-export': 'error',\n 'typescript/no-wrapper-object-types': 'error',\n 'typescript/non-nullable-type-assertion-style': 'error',\n 'typescript/only-throw-error': [\n 'error',\n {\n allow: [\n {\n from: 'package',\n package: '@tanstack/router-core',\n name: 'Redirect',\n },\n ],\n },\n ],\n 'typescript/prefer-as-const': 'error',\n 'typescript/prefer-enum-initializers': 'error',\n 'typescript/prefer-find': 'error',\n 'typescript/prefer-for-of': 'error',\n 'typescript/prefer-function-type': 'error',\n 'typescript/prefer-includes': 'error',\n 'typescript/prefer-literal-enum-member': 'error',\n 'typescript/prefer-namespace-keyword': 'error',\n 'typescript/prefer-nullish-coalescing': 'error',\n 'typescript/prefer-optional-chain': 'error',\n 'typescript/prefer-promise-reject-errors': 'error',\n 'typescript/prefer-reduce-type-parameter': 'error',\n 'typescript/prefer-regexp-exec': 'error',\n 'typescript/prefer-return-this-type': 'error',\n 'typescript/prefer-string-starts-ends-with': 'error',\n 'typescript/promise-function-async': 'error',\n 'typescript/related-getter-setter-pairs': 'error',\n 'typescript/require-array-sort-compare': 'error',\n 'typescript/require-await': 'error',\n 'typescript/restrict-plus-operands': [\n 'error',\n {\n allowAny: false,\n allowBoolean: false,\n allowNullish: false,\n allowNumberAndString: false,\n allowRegExp: false,\n },\n ],\n 'typescript/restrict-template-expressions': [\n 'error',\n {\n allowNumber: true,\n },\n ],\n 'typescript/return-await': ['error', 'error-handling-correctness-only'],\n 'typescript/switch-exhaustiveness-check': 'error',\n 'typescript/triple-slash-reference': 'error',\n 'typescript/unbound-method': 'error',\n 'typescript/unified-signatures': 'error',\n 'typescript/use-unknown-in-catch-callback-variable': 'error',\n },\n },\n {\n files: ['**/*.d.ts'],\n plugins: ['eslint', 'typescript'],\n rules: {\n // Similar to the above rule, interfaces support index signatures only when\n // we define object types with them.\n 'typescript/consistent-indexed-object-style': 'off',\n // We sometimes need to use `interface` in declaration files,\n // especially when we want to extend from a type from another package,\n // and that type is an interface.\n 'typescript/consistent-type-definitions': 'off',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const unicorn = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n plugins: ['unicorn'],\n rules: {\n 'unicorn/catch-error-name': 'error',\n 'unicorn/consistent-assert': 'error',\n 'unicorn/consistent-date-clone': 'error',\n 'unicorn/consistent-empty-array-spread': 'error',\n 'unicorn/consistent-existence-index-check': 'error',\n 'unicorn/consistent-function-scoping': 'error',\n 'unicorn/consistent-template-literal-escape': 'error',\n 'unicorn/empty-brace-spaces': 'error',\n 'unicorn/error-message': 'error',\n 'unicorn/escape-case': 'error',\n 'unicorn/explicit-length-check': 'error',\n 'unicorn/filename-case': 'error',\n 'unicorn/import-style': 'error',\n 'unicorn/new-for-builtins': 'error',\n 'unicorn/no-abusive-eslint-disable': 'error',\n 'unicorn/no-accessor-recursion': 'error',\n 'unicorn/no-anonymous-default-export': 'error',\n 'unicorn/no-array-callback-reference': 'error',\n 'unicorn/no-array-for-each': 'error',\n 'unicorn/no-array-method-this-argument': 'error',\n 'unicorn/no-array-reduce': 'error',\n 'unicorn/no-array-reverse': 'error',\n 'unicorn/no-array-sort': 'error',\n 'unicorn/no-await-expression-member': 'error',\n 'unicorn/no-await-in-promise-methods': 'error',\n 'unicorn/no-console-spaces': 'error',\n 'unicorn/no-empty-file': 'error',\n 'unicorn/no-hex-escape': 'error',\n 'unicorn/no-immediate-mutation': 'error',\n 'unicorn/no-instanceof-builtins': 'error',\n 'unicorn/no-invalid-fetch-options': 'error',\n 'unicorn/no-invalid-remove-event-listener': 'error',\n 'unicorn/no-lonely-if': 'error',\n 'unicorn/no-magic-array-flat-depth': 'error',\n 'unicorn/no-negated-condition': 'error',\n 'unicorn/no-negation-in-equality-check': 'error',\n 'unicorn/no-nested-ternary': 'error',\n 'unicorn/no-new-array': 'error',\n 'unicorn/no-new-buffer': 'error',\n 'unicorn/no-object-as-default-parameter': 'error',\n 'unicorn/no-process-exit': 'error',\n 'unicorn/no-single-promise-in-promise-methods': 'error',\n 'unicorn/no-static-only-class': 'error',\n 'unicorn/no-thenable': 'error',\n 'unicorn/no-this-assignment': 'error',\n 'unicorn/no-typeof-undefined': 'error',\n 'unicorn/no-unnecessary-array-flat-depth': 'error',\n 'unicorn/no-unnecessary-array-splice-count': 'error',\n 'unicorn/no-unnecessary-await': 'error',\n 'unicorn/no-unnecessary-slice-end': 'error',\n 'unicorn/no-unreadable-array-destructuring': 'error',\n 'unicorn/no-unreadable-iife': 'error',\n 'unicorn/no-useless-collection-argument': 'error',\n 'unicorn/no-useless-error-capture-stack-trace': 'error',\n 'unicorn/no-useless-fallback-in-spread': 'error',\n 'unicorn/no-useless-iterator-to-array': 'error',\n 'unicorn/no-useless-length-check': 'error',\n 'unicorn/no-useless-promise-resolve-reject': 'error',\n 'unicorn/no-useless-spread': 'error',\n 'unicorn/no-useless-switch-case': 'error',\n 'unicorn/no-useless-undefined': 'error',\n 'unicorn/no-zero-fractions': 'error',\n 'unicorn/number-literal-case': 'error',\n 'unicorn/numeric-separators-style': 'error',\n 'unicorn/prefer-add-event-listener': 'error',\n 'unicorn/prefer-array-find': 'error',\n 'unicorn/prefer-array-flat': 'error',\n 'unicorn/prefer-array-flat-map': 'error',\n 'unicorn/prefer-array-index-of': 'error',\n 'unicorn/prefer-array-some': 'error',\n 'unicorn/prefer-at': 'error',\n 'unicorn/prefer-bigint-literals': 'error',\n 'unicorn/prefer-blob-reading-methods': 'error',\n 'unicorn/prefer-class-fields': 'error',\n 'unicorn/prefer-classlist-toggle': 'error',\n 'unicorn/prefer-code-point': 'error',\n 'unicorn/prefer-date-now': 'error',\n 'unicorn/prefer-default-parameters': 'error',\n 'unicorn/prefer-dom-node-append': 'error',\n 'unicorn/prefer-dom-node-dataset': 'error',\n 'unicorn/prefer-dom-node-remove': 'error',\n 'unicorn/prefer-dom-node-text-content': 'error',\n 'unicorn/prefer-event-target': 'error',\n 'unicorn/prefer-export-from': 'error',\n 'unicorn/prefer-global-this': 'error',\n 'unicorn/prefer-includes': 'error',\n 'unicorn/prefer-keyboard-event-key': 'error',\n 'unicorn/prefer-logical-operator-over-ternary': 'error',\n 'unicorn/prefer-math-min-max': 'error',\n 'unicorn/prefer-math-trunc': 'error',\n 'unicorn/prefer-modern-dom-apis': 'error',\n 'unicorn/prefer-modern-math-apis': 'error',\n 'unicorn/prefer-module': 'error',\n 'unicorn/prefer-native-coercion-functions': 'error',\n 'unicorn/prefer-negative-index': 'error',\n 'unicorn/prefer-node-protocol': 'error',\n 'unicorn/prefer-number-properties': 'error',\n 'unicorn/prefer-object-from-entries': 'error',\n 'unicorn/prefer-optional-catch-binding': 'error',\n 'unicorn/prefer-prototype-methods': 'error',\n 'unicorn/prefer-query-selector': 'error',\n 'unicorn/prefer-reflect-apply': 'error',\n 'unicorn/prefer-regexp-test': 'error',\n 'unicorn/prefer-response-static-json': 'error',\n 'unicorn/prefer-set-has': 'error',\n 'unicorn/prefer-set-size': 'error',\n 'unicorn/prefer-single-call': 'error',\n 'unicorn/prefer-spread': 'error',\n 'unicorn/prefer-string-replace-all': 'error',\n 'unicorn/prefer-string-slice': 'error',\n 'unicorn/prefer-string-starts-ends-with': 'error',\n 'unicorn/prefer-string-trim-start-end': 'error',\n 'unicorn/prefer-structured-clone': 'error',\n 'unicorn/prefer-ternary': 'error',\n 'unicorn/prefer-top-level-await': 'error',\n 'unicorn/prefer-type-error': 'error',\n 'unicorn/relative-url-style': 'error',\n 'unicorn/require-array-join-separator': 'error',\n 'unicorn/require-module-attributes': 'error',\n 'unicorn/require-module-specifiers': 'error',\n 'unicorn/require-number-to-fixed-digits-argument': 'error',\n 'unicorn/switch-case-braces': 'error',\n 'unicorn/switch-case-break-position': 'error',\n 'unicorn/text-encoding-identifier-case': [\n 'error',\n {\n withDash: true,\n },\n ],\n 'unicorn/throw-new-error': 'error',\n },\n },\n]\n","// This file is generated by `scripts/sync-oxlint-eslint.ts`.\n// Do not edit this file manually.\n\nimport type { OxlintOverride } from 'oxlint'\nimport type { VitestConfig } from '../types/vitest'\n\nexport const vitest = (config: VitestConfig): OxlintOverride[] => [\n {\n files: config.files,\n plugins: ['vitest'],\n rules: {\n 'vitest/consistent-test-it': [\n 'error',\n {\n fn: 'test',\n },\n ],\n 'vitest/expect-expect': 'error',\n 'vitest/hoisted-apis-on-top': 'off',\n 'vitest/no-commented-out-tests': 'error',\n 'vitest/no-conditional-expect': 'error',\n 'vitest/no-conditional-tests': 'off',\n 'vitest/no-disabled-tests': 'error',\n 'vitest/no-focused-tests': 'error',\n 'vitest/no-identical-title': 'error',\n 'vitest/no-import-node-test': 'error',\n 'vitest/no-interpolation-in-snapshots': 'error',\n 'vitest/no-mocks-import': 'error',\n 'vitest/no-standalone-expect': 'error',\n 'vitest/no-unneeded-async-expect-function': 'error',\n 'vitest/prefer-called-exactly-once-with': 'error',\n 'vitest/prefer-mock-return-shorthand': 'error',\n 'vitest/prefer-snapshot-hint': 'off',\n 'vitest/require-awaited-expect-poll': 'off',\n 'vitest/require-local-test-context-for-concurrent-snapshots': 'error',\n 'vitest/require-mock-type-parameters': 'off',\n 'vitest/require-to-throw-message': 'off',\n 'vitest/valid-describe-callback': 'error',\n 'vitest/valid-expect': 'error',\n 'vitest/valid-expect-in-promise': 'error',\n 'vitest/valid-title': 'error',\n 'vitest/warn-todo': 'error',\n },\n },\n]\n","import type { OxlintOverride } from 'oxlint'\n\nimport { GLOB_SRC } from '../globs'\n\nexport const zod = (): OxlintOverride[] => [\n {\n files: [GLOB_SRC],\n jsPlugins: ['eslint-plugin-import-zod'],\n rules: {\n 'import-zod/prefer-zod-namespace': 'error',\n },\n },\n]\n","import type { OxlintConfig } from 'oxlint'\nimport type { DefineConfigOptions } from './types'\n\nimport { mergeWith, pick } from 'es-toolkit/object'\nimport { isPackageExists } from 'local-pkg'\n\nimport { command } from './configs/command'\nimport { deMorgan } from './configs/de-morgan'\nimport { eslint } from './configs/eslint'\nimport { importSort } from './configs/import-sort'\nimport { imports } from './configs/imports'\nimport { jsdoc } from './configs/jsdoc'\nimport { jsxA11y } from './configs/jsx-a11y'\nimport { nelsonlaidev } from './configs/nelsonlaidev'\nimport { nextjs } from './configs/nextjs'\nimport { node } from './configs/node'\nimport { oxc } from './configs/oxc'\nimport { playwright } from './configs/playwright'\nimport { promise } from './configs/promise'\nimport { react } from './configs/react'\nimport { regexp } from './configs/regexp'\nimport { sonarjs } from './configs/sonarjs'\nimport { stylistic } from './configs/stylistic'\nimport { tailwindcss } from './configs/tailwindcss'\nimport { typescript } from './configs/typescript'\nimport { unicorn } from './configs/unicorn'\nimport { vitest } from './configs/vitest'\nimport { zod } from './configs/zod'\nimport { betterTailwindcssDefaultSelectors } from './generated/plugin-snapshots'\n\ntype BetterTailwindcssSelectorKind = 'attribute' | 'variable'\n\nconst createSelectors = (names: string[], kind: BetterTailwindcssSelectorKind) =>\n names.map((name) => ({\n name,\n kind,\n match: [{ type: 'strings' }, { type: 'objectValues' }],\n }))\n\nconst concatArrays = (target: unknown, source: unknown) => {\n if (Array.isArray(target) && Array.isArray(source)) {\n return [...(target as unknown[]), ...(source as unknown[])]\n }\n // mergeWith requires explicit undefined for default behavior\n // eslint-disable-next-line unicorn/no-useless-undefined\n return undefined\n}\n\nexport const defineConfig = ({ config = {}, custom: userConfig = {} }: DefineConfigOptions = {}): OxlintConfig => {\n const overrides = [\n ...oxc(),\n ...eslint(),\n ...command(),\n ...typescript(),\n ...unicorn(),\n ...promise(),\n ...node(),\n ...jsxA11y(),\n ...imports(),\n ...jsdoc(),\n ...nelsonlaidev(),\n ...stylistic(),\n ...deMorgan(),\n ...zod(),\n ...regexp(),\n ...sonarjs(),\n ...importSort(),\n ]\n\n if (userConfig.react ?? isPackageExists('react')) {\n overrides.push(...react())\n }\n\n if (userConfig.nextjs ?? isPackageExists('next')) {\n overrides.push(...nextjs())\n }\n\n if (userConfig.vitest) {\n overrides.push(...vitest(userConfig.vitest))\n }\n\n if (userConfig.playwright) {\n overrides.push(...playwright(userConfig.playwright))\n }\n\n if (userConfig.tailwindcss) {\n overrides.push(...tailwindcss(userConfig.tailwindcss))\n }\n\n return mergeWith<OxlintConfig, OxlintConfig>(\n {\n options: {\n typeAware: true,\n maxWarnings: 0,\n denyWarnings: true,\n reportUnusedDisableDirectives: 'error',\n },\n env: {\n node: true,\n browser: true,\n es2022: true,\n },\n ignorePatterns: ['**/routeTree.gen.ts'],\n overrides,\n settings: {\n 'jsx-a11y': {\n components: {\n Button: 'button',\n Image: 'img',\n Input: 'input',\n Textarea: 'textarea',\n Link: 'a',\n },\n },\n ...(userConfig.tailwindcss && {\n 'better-tailwindcss': {\n detectComponentClasses: false,\n rootFontSize: 16,\n selectors: [\n ...betterTailwindcssDefaultSelectors,\n ...createSelectors(['classNames', '.+ClassNames'], 'attribute'),\n ...createSelectors(['.+ClassName', '.+ClassNames'], 'variable'),\n ],\n },\n }),\n },\n },\n {\n ...config,\n settings: {\n ...config.settings,\n ...(userConfig.tailwindcss && {\n 'better-tailwindcss': pick(userConfig.tailwindcss, [\n 'entryPoint',\n 'tailwindConfig',\n 'tsconfig',\n 'detectComponentClasses',\n 'rootFontSize',\n 'messageStyle',\n 'selectors',\n ]),\n }),\n },\n },\n concatArrays,\n )\n}\n"],"mappings":"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CL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,cACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL;GACE,MAAM;GACN,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,EACD;GACE,OAAO,CACL,EACE,MAAM,WACP,CACF;GACD,MAAM;GACP,CACF;EACD,MAAM;EACP;CACD;EACE,MAAM;EACN,MAAM;EACP;CACD;EACE,MAAM;EACN,OAAO,CACL,EACE,MAAM,WACP,EACD;GACE,OAAO,CACL,EACE,MAAM,WACP,CACF;GACD,MAAM;GACP,CACF;EACD,MAAM;EACP;CACF;;;ACp5BD,MAAa,cAAc,WAA+C,CACxE;CACE,OAAO,OAAO;CACd,WAAW,CAAC,2BAA2B;CACvC,OAAO;EACL,GAAG;EAEH,4BAA4B,CAC1B,SACA;GACE,qBAAqB,OAAO,uBAAuB,EAAE;GACrD,wBAAwB,OAAO,0BAA0B,EAAE;GAC5D,CACF;EACF;CACF,CACF;;;ACdD,MAAa,gBAAkC,CAC7C;CACE,OAAO,CAAC,SAAS;CACjB,SAAS,CAAC,UAAU;CACpB,OAAO;EACL,yBAAyB;EACzB,2BAA2B;EAC3B,kCAAkC;EAClC,gCAAgC;EAChC,sBAAsB;EACtB,0BAA0B;EAC1B,kCAAkC;EAClC,gCAAgC;EAChC,0BAA0B;EAC1B,uBAAuB;EACvB,qCAAqC;EACrC,gCAAgC;EAChC,wBAAwB;EACxB,qBAAqB;EACrB,wBAAwB;EACzB;CACF,CACF;;;AC3BD,SAAgB,eAAe,OAAqB,MAAc,IAA0B;AAC1F,QAAO,OAAO,YACZ,OAAO,QAAQ,MAAM,CAAC,KAAK,CAAC,MAAM,WAAW,CAAC,KAAK,WAAW,KAAK,GAAG,KAAK,KAAK,MAAM,KAAK,OAAO,GAAG,MAAM,MAAM,CAAC,CACnH;;;;ACKH,MAAa,cAAgC,CAC3C;CACE,OAAO,CAAC,SAAS;CACjB,WAAW,CACT;EAAE,MAAM;EAAiB,WAAW;EAA+B,EACnE;EAAE,MAAM;EAAkB,WAAW;EAA6B,CACnE;CACD,OAAO;EACL,GAAG,eAAe,kCAAkC,eAAe,iBAAiB;EAEpF,GAAG;EACH,GAAG,eAAe,qCAAqC,eAAe,iBAAiB;EAEvF,8BAA8B;EAC9B,sBAAsB;EACvB;CACF,CASF;;;AC9BD,MAAa,eAAiC,CAC5C;CACE,OAAO,CAAC,SAAS;CACjB,WAAW,CAAC,uBAAuB;CACnC,OAAO,EACL,GAAG,wBACJ;CACF,CACF;;;ACRD,MAAa,gBAAkC,CAC7C;CACE,OAAO,CAAC,SAAS;CACjB,WAAW,CAAC,wBAAwB;CACpC,OAAO;EACL,GAAG;EAIH,6BAA6B;EAC7B,uBAAuB;EACvB,2BAA2B;EAG3B,yBAAyB;EACzB,gCAAgC;EAChC,kCAAkC;EAClC,yBAAyB;EACzB,gCAAgC;EAGhC,gCAAgC;EACjC;CACF,CACF;;;ACzBD,MAAa,kBAAoC,CAC/C;CACE,OAAO,CAAC,SAAS;CACjB,WAAW,CAAC,2BAA2B;CACvC,OAAO,EACL,sCAAsC,CAAC,SAAS,iBAAiB,EAClE;CACF,CACF;;;ACPD,MAAa,eAAe,YAAiD;CAC3E,MAAM,mBAAmB,QAAQ,WAAW,WAAW;AAEvD,QAAO,CACL;EACE,OAAO,CAAC,SAAS;EACjB,WAAW,CAAC,mCAAmC;EAC/C,OAAO;GACL,gDAAgD,CAC9C,SACA;IACE,UAAU,QAAQ,WAAW,YAAY;IACzC,SAAS,QAAQ,WAAW,WAAW;IACxC,CACF;GAID,4DAA4D;GAC5D,yDAAyD;GACzD,gDAAgD,mBAAmB,QAAQ;GAE3E,qDAAqD,CACnD,SACA;IACE,OAAO,QAAQ,YAAY,SAAS;IACpC,qBAAqB,QAAQ,YAAY,kBAAkB;IAC3D,wBAAwB,QAAQ,YAAY,qBAAqB;IACjE,mBAAmB,QAAQ,YAAY,gBAAgB;IACvD,sBAAsB,QAAQ,YAAY,mBAAmB;IAC9D,CACF;GAED,6CAA6C;GAC7C,4CAA4C;GAC5C,2CAA2C;GAE3C,4CAA4C,CAAC,SAAS,EAAE,UAAU,QAAQ,YAAY,EAAE,EAAE,CAAC;GAC3F,yCAAyC,CAAC,SAAS,EAAE,QAAQ,QAAQ,UAAU,EAAE,EAAE,CAAC;GAEpF,gDAAgD,CAC9C,SACA,EAAE,gBAAgB,QAAQ,YAAY,kBAAkB,MAAM,CAC/D;GACF;EACF,CACF;;;;AC5CH,MAAa,mBAAqC,CAChD;CACE,OAAO,CAAC,SAAS;CACjB,SAAS,CAAC,UAAU,aAAa;CACjC,OAAO;EACL,iCAAiC;EACjC,4BAA4B;EAC5B,6BAA6B;EAC7B,wBAAwB;EACxB,+BAA+B;EAC/B,0BAA0B;EAC1B,0BAA0B;EAC1B,gCAAgC;EAChC,uBAAuB;EACvB,4BAA4B;EAC5B,yBAAyB;EACzB,0BAA0B;EAC1B,2BAA2B;EAC3B,uBAAuB;EACvB,uCAAuC;EACvC,uBAAuB;EACvB,uBAAuB;EACvB,2BAA2B;EAC3B,oBAAoB;EACpB,+BAA+B;EAC/B,2BAA2B;EAC3B,mBAAmB;EACnB,yBAAyB;EACzB,6BAA6B;EAC7B,gCAAgC;EAChC,yBAAyB;EACzB,iCAAiC;EACjC,iBAAiB;EACjB,kBAAkB;EAClB,uBAAuB;EACvB,uCAAuC;EACvC,6BAA6B;EAC7B,wBAAwB;EACxB,wBAAwB;EACxB,2CAA2C;EAC3C,yBAAyB,CACvB,SACA;GACE,SAAS;GACT,UAAU;GACX,CACF;EACD,6BAA6B;EAC7B,6BAA6B,CAC3B,SACA,EACE,0BAA0B,IAC3B,CACF;EACD,iCAAiC;EACjC,2CAA2C;EAC3C,8CAA8C;EAC9C,8CAA8C;EAC9C,yCAAyC;EACzC,0CAA0C,CAAC,SAAS,OAAO;EAC3D,sCAAsC,CACpC,SACA,EACE,wCAAwC,OACzC,CACF;EACD,sCAAsC,CACpC,SACA;GACE,QAAQ;GACR,UAAU;GACX,CACF;EACD,2BAA2B;EAC3B,8BAA8B;EAC9B,gCAAgC;EAChC,8CAA8C;EAC9C,2CAA2C;EAC3C,4BAA4B;EAC5B,uCAAuC;EACvC,6CAA6C;EAC7C,gCAAgC;EAChC,mCAAmC,CACjC,SACA,EACE,iBAAiB,uBAClB,CACF;EACD,8BAA8B;EAC9B,0CAA0C;EAC1C,kCAAkC;EAClC,mCAAmC;EACnC,8BAA8B;EAC9B,8BAA8B;EAC9B,0CAA0C;EAC1C,kCAAkC;EAClC,mCAAmC;EACnC,2CAA2C;EAC3C,6BAA6B;EAC7B,kCAAkC,CAChC,SACA,EACE,kBAAkB,OACnB,CACF;EACD,gCAAgC;EAChC,6BAA6B;EAC7B,2BAA2B;EAC3B,sDAAsD;EACtD,kDAAkD;EAClD,oCAAoC;EACpC,6CAA6C;EAC7C,iCAAiC;EACjC,kCAAkC;EAClC,4BAA4B;EAC5B,qDAAqD;EACrD,uCAAuC;EACvC,2DAA2D;EAC3D,iDAAiD;EACjD,4CAA4C;EAC5C,4CAA4C;EAC5C,6CAA6C;EAC7C,6CAA6C;EAC7C,6CAA6C;EAC7C,iCAAiC;EACjC,mCAAmC;EACnC,6BAA6B;EAC7B,4CAA4C;EAC5C,wCAAwC;EACxC,sCAAsC;EACtC,sCAAsC;EACtC,+BAA+B;EAC/B,oCAAoC;EACpC,4CAA4C;EAC5C,sCAAsC;EACtC,sCAAsC;EACtC,gDAAgD;EAChD,+BAA+B,CAC7B,SACA,EACE,OAAO,CACL;GACE,MAAM;GACN,SAAS;GACT,MAAM;GACP,CACF,EACF,CACF;EACD,8BAA8B;EAC9B,uCAAuC;EACvC,0BAA0B;EAC1B,4BAA4B;EAC5B,mCAAmC;EACnC,8BAA8B;EAC9B,yCAAyC;EACzC,uCAAuC;EACvC,wCAAwC;EACxC,oCAAoC;EACpC,2CAA2C;EAC3C,2CAA2C;EAC3C,iCAAiC;EACjC,sCAAsC;EACtC,6CAA6C;EAC7C,qCAAqC;EACrC,0CAA0C;EAC1C,yCAAyC;EACzC,4BAA4B;EAC5B,qCAAqC,CACnC,SACA;GACE,UAAU;GACV,cAAc;GACd,cAAc;GACd,sBAAsB;GACtB,aAAa;GACd,CACF;EACD,4CAA4C,CAC1C,SACA,EACE,aAAa,MACd,CACF;EACD,2BAA2B,CAAC,SAAS,kCAAkC;EACvE,0CAA0C;EAC1C,qCAAqC;EACrC,6BAA6B;EAC7B,iCAAiC;EACjC,qDAAqD;EACtD;CACF,EACD;CACE,OAAO,CAAC,YAAY;CACpB,SAAS,CAAC,UAAU,aAAa;CACjC,OAAO;EAGL,8CAA8C;EAI9C,0CAA0C;EAC3C;CACF,CACF;;;AC7MD,MAAa,gBAAkC,CAC7C;CACE,OAAO,CAAC,SAAS;CACjB,SAAS,CAAC,UAAU;CACpB,OAAO;EACL,4BAA4B;EAC5B,6BAA6B;EAC7B,iCAAiC;EACjC,yCAAyC;EACzC,4CAA4C;EAC5C,uCAAuC;EACvC,8CAA8C;EAC9C,8BAA8B;EAC9B,yBAAyB;EACzB,uBAAuB;EACvB,iCAAiC;EACjC,yBAAyB;EACzB,wBAAwB;EACxB,4BAA4B;EAC5B,qCAAqC;EACrC,iCAAiC;EACjC,uCAAuC;EACvC,uCAAuC;EACvC,6BAA6B;EAC7B,yCAAyC;EACzC,2BAA2B;EAC3B,4BAA4B;EAC5B,yBAAyB;EACzB,sCAAsC;EACtC,uCAAuC;EACvC,6BAA6B;EAC7B,yBAAyB;EACzB,yBAAyB;EACzB,iCAAiC;EACjC,kCAAkC;EAClC,oCAAoC;EACpC,4CAA4C;EAC5C,wBAAwB;EACxB,qCAAqC;EACrC,gCAAgC;EAChC,yCAAyC;EACzC,6BAA6B;EAC7B,wBAAwB;EACxB,yBAAyB;EACzB,0CAA0C;EAC1C,2BAA2B;EAC3B,gDAAgD;EAChD,gCAAgC;EAChC,uBAAuB;EACvB,8BAA8B;EAC9B,+BAA+B;EAC/B,2CAA2C;EAC3C,6CAA6C;EAC7C,gCAAgC;EAChC,oCAAoC;EACpC,6CAA6C;EAC7C,8BAA8B;EAC9B,0CAA0C;EAC1C,gDAAgD;EAChD,yCAAyC;EACzC,wCAAwC;EACxC,mCAAmC;EACnC,6CAA6C;EAC7C,6BAA6B;EAC7B,kCAAkC;EAClC,gCAAgC;EAChC,6BAA6B;EAC7B,+BAA+B;EAC/B,oCAAoC;EACpC,qCAAqC;EACrC,6BAA6B;EAC7B,6BAA6B;EAC7B,iCAAiC;EACjC,iCAAiC;EACjC,6BAA6B;EAC7B,qBAAqB;EACrB,kCAAkC;EAClC,uCAAuC;EACvC,+BAA+B;EAC/B,mCAAmC;EACnC,6BAA6B;EAC7B,2BAA2B;EAC3B,qCAAqC;EACrC,kCAAkC;EAClC,mCAAmC;EACnC,kCAAkC;EAClC,wCAAwC;EACxC,+BAA+B;EAC/B,8BAA8B;EAC9B,8BAA8B;EAC9B,2BAA2B;EAC3B,qCAAqC;EACrC,gDAAgD;EAChD,+BAA+B;EAC/B,6BAA6B;EAC7B,kCAAkC;EAClC,mCAAmC;EACnC,yBAAyB;EACzB,4CAA4C;EAC5C,iCAAiC;EACjC,gCAAgC;EAChC,oCAAoC;EACpC,sCAAsC;EACtC,yCAAyC;EACzC,oCAAoC;EACpC,iCAAiC;EACjC,gCAAgC;EAChC,8BAA8B;EAC9B,uCAAuC;EACvC,0BAA0B;EAC1B,2BAA2B;EAC3B,8BAA8B;EAC9B,yBAAyB;EACzB,qCAAqC;EACrC,+BAA+B;EAC/B,0CAA0C;EAC1C,wCAAwC;EACxC,mCAAmC;EACnC,0BAA0B;EAC1B,kCAAkC;EAClC,6BAA6B;EAC7B,8BAA8B;EAC9B,wCAAwC;EACxC,qCAAqC;EACrC,qCAAqC;EACrC,mDAAmD;EACnD,8BAA8B;EAC9B,sCAAsC;EACtC,yCAAyC,CACvC,SACA,EACE,UAAU,MACX,CACF;EACD,2BAA2B;EAC5B;CACF,CACF;;;AC1ID,MAAa,UAAU,WAA2C,CAChE;CACE,OAAO,OAAO;CACd,SAAS,CAAC,SAAS;CACnB,OAAO;EACL,6BAA6B,CAC3B,SACA,EACE,IAAI,QACL,CACF;EACD,wBAAwB;EACxB,8BAA8B;EAC9B,iCAAiC;EACjC,gCAAgC;EAChC,+BAA+B;EAC/B,4BAA4B;EAC5B,2BAA2B;EAC3B,6BAA6B;EAC7B,8BAA8B;EAC9B,wCAAwC;EACxC,0BAA0B;EAC1B,+BAA+B;EAC/B,4CAA4C;EAC5C,0CAA0C;EAC1C,uCAAuC;EACvC,+BAA+B;EAC/B,sCAAsC;EACtC,8DAA8D;EAC9D,uCAAuC;EACvC,mCAAmC;EACnC,kCAAkC;EAClC,uBAAuB;EACvB,kCAAkC;EAClC,sBAAsB;EACtB,oBAAoB;EACrB;CACF,CACF;;;ACxCD,MAAa,YAA8B,CACzC;CACE,OAAO,CAAC,SAAS;CACjB,WAAW,CAAC,2BAA2B;CACvC,OAAO,EACL,mCAAmC,SACpC;CACF,CACF;;;ACoBD,MAAM,mBAAmB,OAAiB,SACxC,MAAM,KAAK,UAAU;CACnB;CACA;CACA,OAAO,CAAC,EAAE,MAAM,WAAW,EAAE,EAAE,MAAM,gBAAgB,CAAC;CACvD,EAAE;AAEL,MAAM,gBAAgB,QAAiB,WAAoB;AACzD,KAAI,MAAM,QAAQ,OAAO,IAAI,MAAM,QAAQ,OAAO,CAChD,QAAO,CAAC,GAAI,QAAsB,GAAI,OAAqB;;AAO/D,MAAa,gBAAgB,EAAE,SAAS,EAAE,EAAE,QAAQ,aAAa,EAAE,KAA0B,EAAE,KAAmB;CAChH,MAAM,YAAY;EAChB,GAAG,KAAK;EACR,GAAG,QAAQ;EACX,GAAG,SAAS;EACZ,GAAG,YAAY;EACf,GAAG,SAAS;EACZ,GAAG,SAAS;EACZ,GAAG,MAAM;EACT,GAAG,SAAS;EACZ,GAAG,SAAS;EACZ,GAAG,OAAO;EACV,GAAG,cAAc;EACjB,GAAG,WAAW;EACd,GAAG,UAAU;EACb,GAAG,KAAK;EACR,GAAG,QAAQ;EACX,GAAG,SAAS;EACZ,GAAG,YAAY;EAChB;AAED,KAAI,WAAW,SAAS,gBAAgB,QAAQ,CAC9C,WAAU,KAAK,GAAG,OAAO,CAAC;AAG5B,KAAI,WAAW,UAAU,gBAAgB,OAAO,CAC9C,WAAU,KAAK,GAAG,QAAQ,CAAC;AAG7B,KAAI,WAAW,OACb,WAAU,KAAK,GAAG,OAAO,WAAW,OAAO,CAAC;AAG9C,KAAI,WAAW,WACb,WAAU,KAAK,GAAG,WAAW,WAAW,WAAW,CAAC;AAGtD,KAAI,WAAW,YACb,WAAU,KAAK,GAAG,YAAY,WAAW,YAAY,CAAC;AAGxD,QAAO,UACL;EACE,SAAS;GACP,WAAW;GACX,aAAa;GACb,cAAc;GACd,+BAA+B;GAChC;EACD,KAAK;GACH,MAAM;GACN,SAAS;GACT,QAAQ;GACT;EACD,gBAAgB,CAAC,sBAAsB;EACvC;EACA,UAAU;GACR,YAAY,EACV,YAAY;IACV,QAAQ;IACR,OAAO;IACP,OAAO;IACP,UAAU;IACV,MAAM;IACP,EACF;GACD,GAAI,WAAW,eAAe,EAC5B,sBAAsB;IACpB,wBAAwB;IACxB,cAAc;IACd,WAAW;KACT,GAAG;KACH,GAAG,gBAAgB,CAAC,cAAc,eAAe,EAAE,YAAY;KAC/D,GAAG,gBAAgB,CAAC,eAAe,eAAe,EAAE,WAAW;KAChE;IACF,EACF;GACF;EACF,EACD;EACE,GAAG;EACH,UAAU;GACR,GAAG,OAAO;GACV,GAAI,WAAW,eAAe,EAC5B,sBAAsB,KAAK,WAAW,aAAa;IACjD;IACA;IACA;IACA;IACA;IACA;IACA;IACD,CAAC,EACH;GACF;EACF,EACD,aACD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nelsonlaidev/oxlint-config",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "homepage": "https://github.com/nelsonlaidev/config/blob/main/packages/oxlint-config/README.md",
5
5
  "bugs": {
6
6
  "url": "https://github.com/nelsonlaidev/config/issues"