docs: fix correct graphql references#7623
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.
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/