Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💅 Biome encountered an unexpected error when setting noExplicitAny=off in an override in CLI #1349

Closed
1 task done
SalvatorePreviti opened this issue Dec 26, 2023 · 8 comments · Fixed by #1606
Closed
1 task done
Assignees
Labels
S-Bug-confirmed Status: report has been confirmed as a valid bug

Comments

@SalvatorePreviti
Copy link

SalvatorePreviti commented Dec 26, 2023

Environment information

CLI:
  Version:                      1.4.1
  Color support:                true

Platform:
  CPU Architecture:             aarch64
  OS:                           macos

Environment:
  BIOME_LOG_DIR:                unset
  NO_COLOR:                     unset
  TERM:                         "xterm-256color"
  JS_RUNTIME_VERSION:           "v18.18.2"
  JS_RUNTIME_NAME:              "node"
  NODE_PACKAGE_MANAGER:         "npm/9.8.1"

Biome Configuration:
  Status:                       Loaded successfully
  Formatter disabled:           false
  Linter disabled:              false
  Organize imports disabled:    false
  VCS disabled:                 false

Workspace:
  Open Documents:               0

Rule name

noExplicitAny, but seems to happens with other rules when includes is used

Playground link

Expected result

No errors when running the CLI.

I get this:

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates/biome_service/src/configuration/linter/mod.rs:167:18
Thread Name: biome::worker_6
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates/biome_service/src/configuration/linter/mod.rs:167:18
Thread Name: biome::worker_1
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

./test/dev/devChildTask/dev-child-task.test.ts internalError/panic INTERNAL ━━━━━━━━━━━━━━━━━━━━━━

✖ processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

⚠ This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.

Code of Conduct

  • I agree to follow Biome's Code of Conduct
@ematipico
Copy link
Member

This should be fixed in the next release.

@fb55
Copy link

fb55 commented Jan 10, 2024

Still getting this error in 1.5.1. Other disables work, noExplicitAny errors.

  ✖ processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here
  
  ⚠ This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.

@Conaclos Conaclos reopened this Jan 10, 2024
@bc-m
Copy link

bc-m commented Jan 16, 2024

Got the same issue withlint/performance/noDelete:

"overrides": [
    {
      "include": ["*.spec.ts", "*.spec.tsx"],
      "linter": {
        "rules": {
          "performance": {
            "noDelete": "off"
          }
        }
      }
    }
  ]

or even with an empty rules-object:

"overrides": [
    {
      "include": ["*.spec.ts", "*.spec.tsx"],
      "linter": {
        "rules": {}
      }
    }
  ]

We are using biome 1.5.2.

I would like provide a playground reproduction but i don't found a way to define the config there.

@ematipico
Copy link
Member

Use our Codesandbox template: https://codesandbox.io/p/sandbox/biome-starter-cbs-rky6zq

@bc-m
Copy link

bc-m commented Jan 16, 2024

Use our Codesandbox template: https://codesandbox.io/p/sandbox/biome-starter-cbs-rky6zq

Thank you! Here it is: https://codesandbox.io/p/devbox/divine-waterfall-wqglgc Just run npm run check in terminal.

Output

➜  /workspace git:(master) npm run check

> biome-sandbox@1.0.0 check
> biome check ./src

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates/biome_service/src/configuration/linter/mod.rs:186:18
Thread Name: biome::worker_0
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

./src/utils.spec.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

  ✖ processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here
  
  ⚠ This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.
  

Checked 2 file(s) in 2ms

@nstepien
Copy link
Sponsor Contributor

nstepien commented Jan 17, 2024

I ran into a similar issue, but instead I'm enabling a rule in an override. The rule is otherwise turned off.

config
{
  "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
  "files": {
    "ignore": [
      "./.cache/**/*",
      "./coverage/**/*",
      "./node_modules/**/*",
      "./translations/**/*"
    ]
  },
  "formatter": {
    "ignore": ["*.ts", "*.tsx"],
    "indentStyle": "space"
  },
  "json": {
    "parser": {
      "allowComments": true
    }
  },
  "javascript": {
    "formatter": {
      "quoteStyle": "single",
      "trailingComma": "none"
    }
  },
  "linter": {
    "rules": {
      "recommended": false,
      "a11y": {
        "noAccessKey": "warn",
        "noAriaHiddenOnFocusable": "warn",
        "noAriaUnsupportedElements": "warn",
        "noAutofocus": "off",
        "noBlankTarget": "warn",
        "noDistractingElements": "warn",
        "noHeaderScope": "warn",
        "noInteractiveElementToNoninteractiveRole": "warn",
        "noNoninteractiveElementToInteractiveRole": "warn",
        "noNoninteractiveTabindex": "off",
        "noPositiveTabindex": "warn",
        "noRedundantAlt": "warn",
        "noRedundantRoles": "warn",
        "noSvgWithoutTitle": "off",
        "useAltText": "warn",
        "useAnchorContent": "warn",
        "useAriaActivedescendantWithTabindex": "warn",
        "useAriaPropsForRole": "warn",
        "useButtonType": "warn",
        "useHeadingContent": "warn",
        "useHtmlLang": "warn",
        "useIframeTitle": "off",
        "useKeyWithClickEvents": "off",
        "useKeyWithMouseEvents": "warn",
        "useMediaCaption": "off",
        "useValidAnchor": "off",
        "useValidAriaProps": "warn",
        "useValidAriaRole": "warn",
        "useValidAriaValues": "warn",
        "useValidLang": "warn"
      },
      "complexity": {
        "noBannedTypes": "warn",
        "noExcessiveCognitiveComplexity": "off",
        "noExtraBooleanCast": "warn",
        "noForEach": "off",
        "noMultipleSpacesInRegularExpressionLiterals": "warn",
        "noStaticOnlyClass": "warn",
        "noThisInStatic": "warn",
        "noUselessCatch": "warn",
        "noUselessConstructor": "warn",
        "noUselessEmptyExport": "warn",
        "noUselessFragments": "warn",
        "noUselessLabel": "warn",
        "noUselessRename": "warn",
        "noUselessSwitchCase": "warn",
        "noUselessThisAlias": "warn",
        "noUselessTypeConstraint": "warn",
        "noVoid": "warn",
        "noWith": "warn",
        "useArrowFunction": "warn",
        "useFlatMap": "warn",
        "useLiteralKeys": "warn",
        "useOptionalChain": "warn",
        "useRegexLiterals": "warn",
        "useSimpleNumberKeys": "warn",
        "useSimplifiedLogicExpression": "off"
      },
      "correctness": {
        "noChildrenProp": "off",
        "noConstAssign": "warn",
        "noConstantCondition": "warn",
        "noConstructorReturn": "warn",
        "noEmptyCharacterClassInRegex": "warn",
        "noEmptyPattern": "warn",
        "noGlobalObjectCalls": "warn",
        "noInnerDeclarations": "warn",
        "noInvalidConstructorSuper": "warn",
        "noInvalidNewBuiltin": "warn",
        "noNewSymbol": "warn",
        "noNonoctalDecimalEscape": "warn",
        "noPrecisionLoss": "warn",
        "noRenderReturnValue": "warn",
        "noSelfAssign": "warn",
        "noSetterReturn": "warn",
        "noStringCaseMismatch": "warn",
        "noSwitchDeclarations": "warn",
        "noUndeclaredVariables": "off",
        "noUnnecessaryContinue": "warn",
        "noUnreachable": "warn",
        "noUnreachableSuper": "warn",
        "noUnsafeFinally": "warn",
        "noUnsafeOptionalChaining": "warn",
        "noUnusedLabels": "warn",
        "noUnusedVariables": "off",
        "noVoidElementsWithChildren": "warn",
        "noVoidTypeReturn": "warn",
        "useExhaustiveDependencies": "warn",
        "useHookAtTopLevel": "warn",
        "useIsNan": "warn",
        "useValidForDirection": "warn",
        "useYield": "warn"
      },
      "performance": {
        "noAccumulatingSpread": "warn",
        "noDelete": "warn"
      },
      "security": {
        "noDangerouslySetInnerHtml": "warn",
        "noDangerouslySetInnerHtmlWithChildren": "warn"
      },
      "style": {
        "noArguments": "warn",
        "noCommaOperator": "warn",
        "noDefaultExport": "off",
        "noImplicitBoolean": "off",
        "noInferrableTypes": "warn",
        "noNamespace": "warn",
        "noNegationElse": "off",
        "noNonNullAssertion": "off",
        "noParameterAssign": "off",
        "noParameterProperties": "warn",
        "noRestrictedGlobals": "warn",
        "noShoutyConstants": "warn",
        "noUnusedTemplateLiteral": "warn",
        "noUselessElse": "warn",
        "noVar": "warn",
        "useAsConstAssertion": "warn",
        "useBlockStatements": "off",
        "useCollapsedElseIf": "warn",
        "useConst": "warn",
        "useDefaultParameterLast": "off",
        "useEnumInitializers": "warn",
        "useExponentiationOperator": "warn",
        "useFragmentSyntax": "warn",
        "useLiteralEnumMembers": "warn",
        "useNamingConvention": "off",
        "useNumericLiterals": "warn",
        "useSelfClosingElements": "warn",
        "useShorthandArrayType": "warn",
        "useShorthandAssign": "warn",
        "useSingleCaseStatement": "off",
        "useSingleVarDeclarator": "warn",
        "useTemplate": "warn",
        "useWhile": "warn"
      },
      "suspicious": {
        "noApproximativeNumericConstant": "warn",
        "noArrayIndexKey": "off",
        "noAssignInExpressions": "off",
        "noAsyncPromiseExecutor": "warn",
        "noCatchAssign": "warn",
        "noClassAssign": "warn",
        "noCommentText": "warn",
        "noCompareNegZero": "warn",
        "noConfusingLabels": "warn",
        "noConfusingVoidType": "warn",
        "noConsoleLog": "warn",
        "noConstEnum": "warn",
        "noControlCharactersInRegex": "warn",
        "noDebugger": "warn",
        "noDoubleEquals": "warn",
        "noDuplicateCase": "warn",
        "noDuplicateClassMembers": "warn",
        "noDuplicateJsxProps": "warn",
        "noDuplicateObjectKeys": "warn",
        "noDuplicateParameters": "warn",
        "noEmptyInterface": "warn",
        "noExplicitAny": "warn",
        "noExtraNonNullAssertion": "warn",
        "noFallthroughSwitchClause": "warn",
        "noFunctionAssign": "warn",
        "noGlobalIsFinite": "warn",
        "noGlobalIsNan": "warn",
        "noImplicitAnyLet": "off",
        "noImportAssign": "warn",
        "noLabelVar": "warn",
        "noMisleadingInstantiator": "warn",
        "noMisrefactoredShorthandAssign": "warn",
        "noPrototypeBuiltins": "warn",
        "noRedeclare": "warn",
        "noRedundantUseStrict": "warn",
        "noSelfCompare": "warn",
        "noShadowRestrictedNames": "warn",
        "noSparseArray": "warn",
        "noUnsafeDeclarationMerging": "warn",
        "noUnsafeNegation": "warn",
        "useDefaultSwitchClauseLast": "warn",
        "useGetterReturn": "warn",
        "useIsArray": "warn",
        "useNamespaceKeyword": "warn",
        "useValidTypeof": "warn"
      }
    }
  },
  "organizeImports": {
    "enabled": false
  },
  "overrides": [
    {
      "include": ["**/*.js"],
      "linter": {
        "rules": {
          "suspicious": {
            "noConsoleLog": "off"
          }
        }
      }
    },
    {
      "include": ["./src/path/**/*"],
      "linter": {
        "rules": {
          "complexity": {
            "noForEach": "warn"
          }
        }
      }
    }
  ]
}
cli output
Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_4
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_34
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_15
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_34
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_8
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_44
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_2
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_41
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_34
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_31
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_35
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_28
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_2
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_30
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_50
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_15
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_34
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_45
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_6
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_52
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_13
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_30
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_20
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_15
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_40
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_39
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_2
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_32
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_14
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_28
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_8
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_18
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_34
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_0
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_27
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_37
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_26
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_29
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_25
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_32
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_18
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_6
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_22
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_42
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_2
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_11
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_46
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_30
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_16
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_18
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_60
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_25
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_58
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_34
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_32
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_59
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_20
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_40
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_9
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_4
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_10
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_13
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_33
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_18
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_35
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_26
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_62
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_14
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_11
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_3
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_61
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_44
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_20
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_17
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_46
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_2
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_54
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_22
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_39
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_40
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_10
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_47
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_0
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_12
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_36
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_49
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_59
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_31
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_42
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_5
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_34
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_26
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_13
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_48
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_21
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_24
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_53
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_38
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_23
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_1
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_35
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_18
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_43
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_45
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_41
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

Biome encountered an unexpected error

This is a bug in Biome, not an error in your code, and we would appreciate it if you could report it to https://github.com/biomejs/biome/issues/ along with the following information to help us fixing the issue:

Source Location: crates\biome_service\src\configuration\linter\mod.rs:186:18
Thread Name: biome::worker_55
Message: internal error: entered unreachable code: the rule is turned off, it should not step in here

.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━━━━━━━━

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━━━

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


.\src\path\file.ts internalError/panic  INTERNAL  ━━━━━━━━━━━━━━━━━ 

  × processing panicked: internal error: entered unreachable code: the rule is turned off, it should not step in here

  ! This diagnostic was derived from an internal Biome error. Potential bug, please report it if necessary.


Checked 1575 file(s) in 90ms

@Conaclos Conaclos added the S-Bug-confirmed Status: report has been confirmed as a valid bug label Jan 17, 2024
@Conaclos Conaclos self-assigned this Jan 18, 2024
@Conaclos
Copy link
Member

Conaclos commented Jan 19, 2024

I am working on a fix that will be released at the start of next week.

@Conaclos
Copy link
Member

This should now be fixed by the last release: 1.5.3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-Bug-confirmed Status: report has been confirmed as a valid bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants