-
-
Notifications
You must be signed in to change notification settings - Fork 884
feat(migrate): some more migration metadata #9016
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@biomejs/biome": patch | ||
| --- | ||
|
|
||
| Added eslint migration metadata for the rules `@typescript/no-var-requires`, `@typescript/keyword-spacing`, `@typescript/func-call-spacing`, `vue/keyword-spacing`, `vue/func-call-spacing`, and `unicorn/empty-brace-spaces`, |
8 changes: 8 additions & 0 deletions
8
crates/biome_cli/src/execute/migrate/eslint_any_rule_to_biome.rs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
@typescript-eslint/no-var-requires rule documentation scope behavior💡 Result:
@typescript-eslint/no-var-requiresflags CommonJS “variable requires”—i.e., assigning the result ofrequire()to a variable:var foo = require('foo'),let foo = require('foo'),const foo = require('foo')(the classic “Require statement not part of import statement” message). [1]import foo = require('foo'), and a side-effect-onlyrequire('foo')call (because it’s not a var/let/const assignment). [1]Scope / what it targets
require()used in a variable declaration/assignment pattern (“var-requires”), not allrequire()usage. [1]Options
allow: string[]— a list of regex patterns (compiled with theuflag) for module specifiers that are allowed to be required (commonly used for things likepackage.jsonor certain JSON files). Default:[]. [1]Status / replacement
@typescript-eslint/no-require-imports. [1]no-require-importsis broader: it disallows invokingrequire()(optionally allowingimport ... = require(...)viaallowAsImport). [2]Sources: [1]
no-var-requiresdocs, typescript-eslint.io; [2]no-require-importsdocs, typescript-eslint.io.🏁 Script executed:
Repository: biomejs/biome
Length of output: 111
🏁 Script executed:
Repository: biomejs/biome
Length of output: 3961
Use
.inspired()instead of.same()forno-var-requires.@typescript-eslint/no-var-requiresonly flagsrequire()in variable declarations—it doesn't covermodule.exportsorexportsassignments likeNoCommonJsdoes. Since the coverage differs,.inspired()is the more accurate mapping.🔧 Suggested fix
🤖 Prompt for AI Agents