-
-
Notifications
You must be signed in to change notification settings - Fork 760
docs: fix correct graphql references #7623
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
|
Walkthrough
Pre-merge checks and finishing touchesβ Failed checks (1 warning)
β Passed checks (2 passed)
β¨ Finishing touches
π§ͺ Generate unit tests
Comment |
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.
Actionable comments posted: 0
π§Ή Nitpick comments (1)
crates/biome_analyze/src/rule.rs (1)
392-395: Stop classifying GraphQL Schema Linter as an ESLint plugin.Now that
GraphqlSchemaLinterstands on its own,is_eslint_pluginshould returnfalsefor it; otherwise we still lump a standalone tool in the ESLint bucket.- !matches!(self, Self::Clippy(_) | Self::Eslint(_) | Self::Stylelint(_)) + !matches!( + self, + Self::Clippy(_) | Self::Eslint(_) | Self::Stylelint(_) | Self::GraphqlSchemaLinter(_) + )
π Review details
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
π Files selected for processing (2)
crates/biome_analyze/src/rule.rs(5 hunks)crates/biome_graphql_analyze/src/lint/style/use_graphql_naming_convention.rs(1 hunks)
π§° Additional context used
π Path-based instructions (3)
crates/biome_*/**
π CodeRabbit inference engine (CLAUDE.md)
Place core crates under /crates/biome_*/
Files:
crates/biome_analyze/src/rule.rscrates/biome_graphql_analyze/src/lint/style/use_graphql_naming_convention.rs
**/*.rs
π CodeRabbit inference engine (CONTRIBUTING.md)
Format all Rust source files before committing (just f)
Files:
crates/biome_analyze/src/rule.rscrates/biome_graphql_analyze/src/lint/style/use_graphql_naming_convention.rs
crates/biome_*_{syntax,parser,formatter,analyze,factory,semantic}/**
π CodeRabbit inference engine (CLAUDE.md)
Maintain the per-language crate structure: biome_{lang}_{syntax,parser,formatter,analyze,factory,semantic}
Files:
crates/biome_graphql_analyze/src/lint/style/use_graphql_naming_convention.rs
𧬠Code graph analysis (1)
crates/biome_graphql_analyze/src/lint/style/use_graphql_naming_convention.rs (1)
crates/biome_analyze/src/rule.rs (2)
sources(576-579)inspired(252-257)
β° Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (24)
- GitHub Check: Documentation
- GitHub Check: Test (depot-windows-2022-16)
- GitHub Check: Test (depot-ubuntu-24.04-arm-16)
- GitHub Check: Lint project (depot-ubuntu-24.04-arm-16)
- GitHub Check: Check Dependencies
- GitHub Check: Lint project (depot-windows-2022)
- GitHub Check: Bench (biome_package)
- GitHub Check: Bench (biome_html_formatter)
- GitHub Check: Bench (biome_configuration)
- GitHub Check: Bench (biome_json_formatter)
- GitHub Check: Bench (biome_graphql_parser)
- GitHub Check: Bench (biome_module_graph)
- GitHub Check: Bench (biome_graphql_formatter)
- GitHub Check: Bench (biome_html_parser)
- GitHub Check: Bench (biome_json_analyze)
- GitHub Check: Bench (biome_json_parser)
- GitHub Check: Bench (biome_css_analyze)
- GitHub Check: Bench (biome_css_formatter)
- GitHub Check: Bench (biome_js_analyze)
- GitHub Check: Bench (biome_js_formatter)
- GitHub Check: Bench (biome_css_parser)
- GitHub Check: Bench (biome_js_parser)
- GitHub Check: Test Node.js API
- GitHub Check: autofix
CodSpeed Performance ReportMerging #7623 will not alter performanceComparing Summary
|
Summary
graphql-schema-linteris it's own linter, not part of Eslint, so noEslintprefixGraphQL-ESLintdocumentation urlGraphQL-ESLintrule prefix is@graphql-eslint/notgraphql/