-
Notifications
You must be signed in to change notification settings - Fork 0
Bump eslint from 8.57.0 to 9.21.0 #132
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
Conversation
Reviewer's Guide by SourceryThis pull request upgrades the eslint dependency from version 8.57.0 to 9.21.0. This update incorporates the latest features, fixes, and improvements from the eslint project. Sequence diagram for ESLint Rule ProcessingsequenceDiagram
participant ESLint
participant Rule
participant AST
participant Config
ESLint->>Config: Load Configuration
ESLint->>AST: Parse Code
ESLint->>Rule: Apply Rule
alt Rule is active
Rule->>AST: Traverse AST
Rule->>Rule: Check Node
alt Node violates rule
Rule->>ESLint: Report Error
end
end
ESLint->>ESLint: Aggregate Results
Updated class diagram for RuleContextclassDiagram
class RuleContext {
+ report(descriptor: ReportDescriptor): void
}
class ReportDescriptor {
+ loc: SourceLocation
+ message: string
}
RuleContext -- ReportDescriptor : has
note for RuleContext "RuleContext type has been fixed in eslint v9.20.1"
note for ReportDescriptor "Test added for Rule.ReportDescriptor type in eslint v9.21.0"
Flow diagram for ESLint Configuration Loadinggraph LR
A[Start] --> B{Find ESLint Configuration File};
B -- Yes --> C[Load Configuration File];
B -- No --> D[Use Default Configuration];
C --> E{Handle Missing Plugins};
D --> E
E -- Plugin Found --> F[Apply Plugin Configuration];
E -- Plugin Missing --> G[Display Improved Error Message];
F --> H[Lint Files];
G --> H
H --> I[End];
style G fill:#f9f,stroke:#333,stroke-width:2px
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!
|
@dependabot rebase |
40f152b to
6e578a8
Compare
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.21.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v8.57.0...v9.21.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
6e578a8 to
de4f521
Compare
|
Superseded by #149. |
Bumps eslint from 8.57.0 to 9.21.0.
Release notes
Sourced from eslint's releases.
... (truncated)
Changelog
Sourced from eslint's changelog.
... (truncated)
Commits
ecd0ede9.21.0a7ef4c7Build: changelog update for 9.21.0a8c9a9fchore: update@eslint/eslintrcand@eslint/js(#19453)265e0cfchore: package.json update for@eslint/jsrelease418717ffeat: introduce new deprecated types for rules (#19238)3401b85test: add test forRule.ReportDescriptortype (#19449)e497aa7chore: update rewrite dependencies (#19448)c5561eadocs: Update READMEdb5340dfix: update missing plugin message template (#19445)d8ffdd4fix: do not exit process on rule crash (#19436)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by Sourcery
Bump eslint from 8.57.0 to 9.21.0. This includes new features, bug fixes, documentation updates, and chore updates.
New Features:
--extCLI option.Tests:
Rule.ReportDescriptortype.