Skip to content

Conversation

@davidlion
Copy link
Member

@davidlion davidlion commented Sep 1, 2025

Description

Previously, include statements were ordered and grouped as follows:

//// Foo.cpp

#include "Foo.hpp"  // 0. Header matching current cpp file (if it exists)

#include <stdio.h> // 1. C system header

#include <string> // 2. C++ system header

#include <log_surgeon/...> // 3. Project header

#include <fmt/format.h> // 4. External project header

#include "Bar.hpp" // 5. Any other header

This PR swaps project headers (3) and external project headers (4) so that all non-project headers are sequential.

Additionally, we bump dev-utils to get the updated clang-format v21.1 config so CI is successful without locking the version to v20.1.

Checklist

  • The PR satisfies the contribution guidelines.
  • This is a breaking change and that has been indicated in the PR title, OR this isn't a
    breaking change.
  • Necessary docs have been updated, OR no docs need to be updated.

Validation performed

CI passing.

Summary by CodeRabbit

  • Chores
    • Updated development utilities submodule and raised lint tool minimum version.
    • Expanded ignore list to include formatting and lint configuration files.
  • Style
    • Standardized header include ordering and removed duplicate includes across the codebase.
    • Minor formatting and whitespace cleanups to improve readability.
  • Tests
    • Small formatting adjustments with no behavioural impact.

@davidlion davidlion requested a review from a team as a code owner September 1, 2025 19:25
@coderabbitai
Copy link

coderabbitai bot commented Sep 1, 2025

Walkthrough

Updated repository formatting and linting: .gitignore entries added; src/.clang-format include-category priorities adjusted; many headers reordered and duplicate fmt includes removed; minor formatting of type aliases; lint-requirements tightened; dev-utils submodule pointer advanced. No functional or API changes.

Changes

Cohort / File(s) Summary
Ignore list updates
./.gitignore
Added /.clang-format and /.clang-tidy to ignore list.
Formatting configuration
src/.clang-format
Changed include-category priorities (project vs external libs) and removed a project-relative headers category; no code changes.
Finite automata include reordering/deduplication
src/log_surgeon/finite_automata/Dfa.hpp, .../DfaState.hpp, .../DfaTransition.hpp, .../Nfa.hpp, .../NfaSpontaneousTransition.hpp, .../NfaState.hpp, .../RegexAST.hpp, .../RegisterOperation.hpp, .../TagOperation.hpp
Moved fmt includes earlier, removed duplicate fmt includes, and adjusted ordering of local includes; no logic or API changes.
Parser/test formatting only
src/log_surgeon/SchemaParser.cpp, tests/test-schema.cpp
Reformatted type alias declarations across lines; purely stylistic.
Wildcard query parser include order
src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp
Moved local token includes to follow fmt headers; no functional changes.
Submodule update
tools/yscope-dev-utils
Advanced submodule pointer from b965f19 to 3ff7d05; no local code edits.
Lint requirements
lint-requirements.txt
Raised minimum clang-tidy version from >=20.1 to >=21.1.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Suggested reviewers

  • SharafMohamed
  • LinZhihao-723
  • kirkrodrigues

📜 Recent review details

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between debe556 and e10960f.

📒 Files selected for processing (1)
  • .gitignore (1 hunks)
🧰 Additional context used
🧠 Learnings (1)
📓 Common learnings
Learnt from: davidlion
PR: y-scope/log-surgeon#156
File: src/.clang-format:9-13
Timestamp: 2025-09-01T19:58:45.235Z
Learning: In y-scope/log-surgeon project, quoted headers should NOT be grouped with project headers that use angle brackets (<>). The project intentionally allows quoted includes to fall into the default bucket rather than creating a separate category for them. There's a planned migration to eventually move files away from using relative includes.
🔇 Additional comments (1)
.gitignore (1)

5-5: Section header reads clearly.

No further changes needed here.

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore or @coderabbit ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 9e37a5d and c0dde5b.

📒 Files selected for processing (15)
  • .gitignore (1 hunks)
  • src/.clang-format (1 hunks)
  • src/log_surgeon/SchemaParser.cpp (2 hunks)
  • src/log_surgeon/finite_automata/Dfa.hpp (1 hunks)
  • src/log_surgeon/finite_automata/DfaState.hpp (1 hunks)
  • src/log_surgeon/finite_automata/DfaTransition.hpp (1 hunks)
  • src/log_surgeon/finite_automata/Nfa.hpp (1 hunks)
  • src/log_surgeon/finite_automata/NfaSpontaneousTransition.hpp (1 hunks)
  • src/log_surgeon/finite_automata/NfaState.hpp (1 hunks)
  • src/log_surgeon/finite_automata/RegexAST.hpp (1 hunks)
  • src/log_surgeon/finite_automata/RegisterOperation.hpp (1 hunks)
  • src/log_surgeon/finite_automata/TagOperation.hpp (1 hunks)
  • src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp (1 hunks)
  • tests/test-schema.cpp (1 hunks)
  • tools/yscope-dev-utils (1 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
**/*.{cpp,h,hpp,java,js,jsx,tpp,ts,tsx}

⚙️ CodeRabbit configuration file

  • Prefer false == <expression> rather than !<expression>.

Files:

  • src/log_surgeon/finite_automata/NfaState.hpp
  • src/log_surgeon/finite_automata/NfaSpontaneousTransition.hpp
  • tests/test-schema.cpp
  • src/log_surgeon/finite_automata/Nfa.hpp
  • src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp
  • src/log_surgeon/finite_automata/RegisterOperation.hpp
  • src/log_surgeon/finite_automata/DfaState.hpp
  • src/log_surgeon/SchemaParser.cpp
  • src/log_surgeon/finite_automata/TagOperation.hpp
  • src/log_surgeon/finite_automata/RegexAST.hpp
  • src/log_surgeon/finite_automata/DfaTransition.hpp
  • src/log_surgeon/finite_automata/Dfa.hpp
🧠 Learnings (16)
📚 Learning: 2024-11-13T20:02:13.737Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#48
File: src/log_surgeon/finite_automata/RegexNFAState.hpp:0-0
Timestamp: 2024-11-13T20:02:13.737Z
Learning: In `src/log_surgeon/finite_automata/RegexNFAState.hpp`, the constructor `RegexNFAState(std::set<Tag const*> tags, RegexNFAState const* dest_state)` has been updated to use `std::vector<Tag const*> tags` instead of `std::set`.

Applied to files:

  • src/log_surgeon/finite_automata/NfaState.hpp
  • src/log_surgeon/finite_automata/NfaSpontaneousTransition.hpp
  • tests/test-schema.cpp
  • src/log_surgeon/finite_automata/Nfa.hpp
  • src/log_surgeon/finite_automata/DfaState.hpp
  • src/log_surgeon/SchemaParser.cpp
  • src/log_surgeon/finite_automata/TagOperation.hpp
  • src/log_surgeon/finite_automata/RegexAST.hpp
  • src/log_surgeon/finite_automata/DfaTransition.hpp
  • src/log_surgeon/finite_automata/Dfa.hpp
📚 Learning: 2024-10-24T15:54:35.193Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#42
File: src/log_surgeon/finite_automata/RegexNFA.hpp:442-456
Timestamp: 2024-10-24T15:54:35.193Z
Learning: In the C++ file `src/log_surgeon/finite_automata/RegexNFA.hpp`, for the `RegexNFA::serialize()` function, prioritize code clarity over efficiency when handling string operations.

Applied to files:

  • src/log_surgeon/finite_automata/NfaState.hpp
  • tests/test-schema.cpp
  • src/log_surgeon/finite_automata/Nfa.hpp
  • src/log_surgeon/finite_automata/DfaState.hpp
  • src/log_surgeon/SchemaParser.cpp
  • src/log_surgeon/finite_automata/RegexAST.hpp
  • src/log_surgeon/finite_automata/Dfa.hpp
📚 Learning: 2024-11-02T09:13:56.755Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#47
File: src/log_surgeon/finite_automata/RegexNFAState.hpp:127-128
Timestamp: 2024-11-02T09:13:56.755Z
Learning: `RegexNFAUTF8State` is defined as a type alias for `RegexNFAState<RegexNFAStateType::UTF8>`.

Applied to files:

  • src/log_surgeon/finite_automata/NfaState.hpp
  • tests/test-schema.cpp
  • src/log_surgeon/SchemaParser.cpp
  • src/log_surgeon/finite_automata/RegexAST.hpp
📚 Learning: 2024-10-24T15:54:19.228Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#42
File: src/log_surgeon/finite_automata/RegexNFA.hpp:99-105
Timestamp: 2024-10-24T15:54:19.228Z
Learning: In `src/log_surgeon/finite_automata/RegexNFA.hpp`, it's acceptable to have constructors without the `explicit` specifier. Do not suggest adding `explicit` to constructors in this file.

Applied to files:

  • src/log_surgeon/finite_automata/NfaState.hpp
  • src/log_surgeon/finite_automata/NfaSpontaneousTransition.hpp
  • tests/test-schema.cpp
  • src/log_surgeon/finite_automata/Nfa.hpp
  • src/log_surgeon/SchemaParser.cpp
  • src/log_surgeon/finite_automata/RegexAST.hpp
📚 Learning: 2024-11-18T16:45:46.073Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#50
File: src/log_surgeon/finite_automata/Tag.hpp:0-0
Timestamp: 2024-11-18T16:45:46.073Z
Learning: The class `TagPositions` was removed from `src/log_surgeon/finite_automata/Tag.hpp` as it is no longer needed.

Applied to files:

  • src/log_surgeon/finite_automata/NfaState.hpp
  • src/log_surgeon/finite_automata/NfaSpontaneousTransition.hpp
  • src/log_surgeon/finite_automata/Nfa.hpp
  • src/log_surgeon/finite_automata/RegisterOperation.hpp
  • src/log_surgeon/finite_automata/DfaState.hpp
  • src/log_surgeon/finite_automata/TagOperation.hpp
  • src/log_surgeon/finite_automata/RegexAST.hpp
  • src/log_surgeon/finite_automata/DfaTransition.hpp
  • src/log_surgeon/finite_automata/Dfa.hpp
📚 Learning: 2024-11-27T22:25:35.608Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#56
File: src/log_surgeon/finite_automata/RegisterHandler.hpp:0-0
Timestamp: 2024-11-27T22:25:35.608Z
Learning: In the `RegisterHandler` class in `src/log_surgeon/finite_automata/RegisterHandler.hpp`, the methods `add_register` and `append_position` rely on `emplace_back` and `m_prefix_tree.insert` to handle exceptions correctly and maintain consistent state without requiring additional exception handling.

Applied to files:

  • src/log_surgeon/finite_automata/NfaState.hpp
  • src/log_surgeon/finite_automata/Nfa.hpp
  • src/log_surgeon/finite_automata/RegisterOperation.hpp
  • src/log_surgeon/finite_automata/DfaState.hpp
  • src/log_surgeon/finite_automata/TagOperation.hpp
  • src/log_surgeon/finite_automata/RegexAST.hpp
  • src/log_surgeon/finite_automata/DfaTransition.hpp
  • src/log_surgeon/finite_automata/Dfa.hpp
📚 Learning: 2024-11-02T09:18:31.046Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#47
File: src/log_surgeon/finite_automata/TaggedTransition.hpp:16-37
Timestamp: 2024-11-02T09:18:31.046Z
Learning: In `src/log_surgeon/finite_automata/TaggedTransition.hpp`, the classes `PositiveTaggedTransition` and `NegativeTaggedTransition` currently do not share enough functionality to justify refactoring into a common base class.

Applied to files:

  • src/log_surgeon/finite_automata/NfaSpontaneousTransition.hpp
  • src/log_surgeon/finite_automata/TagOperation.hpp
  • src/log_surgeon/finite_automata/RegexAST.hpp
  • src/log_surgeon/finite_automata/Dfa.hpp
📚 Learning: 2024-11-13T22:25:54.168Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#48
File: tests/test-tag.cpp:10-10
Timestamp: 2024-11-13T22:25:54.168Z
Learning: In the log-surgeon codebase (C++), particularly in the finite automata components involving the `Tag` class (`src/log_surgeon/finite_automata/Tag.hpp`), it's important to ensure that `Tag*` pointers in other objects cannot be `nullptr`. Test cases should focus on validating that these `Tag*` pointers are not null where they are used, and handle `nullptr` appropriately.

Applied to files:

  • src/log_surgeon/finite_automata/NfaSpontaneousTransition.hpp
  • src/log_surgeon/finite_automata/Nfa.hpp
  • src/log_surgeon/finite_automata/TagOperation.hpp
  • src/log_surgeon/finite_automata/RegexAST.hpp
📚 Learning: 2025-08-08T10:23:06.281Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#144
File: src/log_surgeon/wildcard_query_parser/QueryInterpretation.hpp:80-88
Timestamp: 2025-08-08T10:23:06.281Z
Learning: In y-scope/log-surgeon (C++), small function definitions are allowed to remain inline in headers. For src/log_surgeon/wildcard_query_parser/QueryInterpretation.hpp, do not suggest moving small methods like QueryInterpretation::append_variable_token to the .cpp for “consistency” in future reviews.

Applied to files:

  • src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp
  • src/log_surgeon/SchemaParser.cpp
📚 Learning: 2025-08-08T10:00:20.963Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#144
File: src/log_surgeon/wildcard_query_parser/VariableQueryToken.hpp:28-31
Timestamp: 2025-08-08T10:00:20.963Z
Learning: In src/log_surgeon/wildcard_query_parser/QueryInterpretation.hpp (C++), do not default the comparison operators: the class stores std::vector<std::variant<StaticQueryToken, VariableQueryToken>>, which yields only a weak ordering. A custom operator<=> that maps the variant’s weak ordering to std::strong_ordering is required; avoid suggesting defaulting there in future reviews.

Applied to files:

  • src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp
📚 Learning: 2025-08-08T10:21:56.571Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#144
File: src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp:57-77
Timestamp: 2025-08-08T10:21:56.571Z
Learning: In src/log_surgeon/wildcard_query_parser/QueryInterpretation.hpp/.cpp (C++), for QueryInterpretation::append_query_interpretation, prefer a single overload taking QueryInterpretation const&; do not suggest adding an rvalue/move overload in future reviews for this method.

Applied to files:

  • src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp
📚 Learning: 2025-08-08T10:17:43.495Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#144
File: src/log_surgeon/wildcard_query_parser/VariableQueryToken.hpp:28-31
Timestamp: 2025-08-08T10:17:43.495Z
Learning: In src/log_surgeon/wildcard_query_parser/VariableQueryToken.hpp/.cpp (C++), do not suggest defaulting operator<=>. The project prefers a custom out-of-line comparator that explicitly handles the bool member (via explicit cast) to avoid implicit conversions; keep the current manual implementation.

Applied to files:

  • src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp
📚 Learning: 2025-08-08T10:22:26.739Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#144
File: src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp:98-120
Timestamp: 2025-08-08T10:22:26.739Z
Learning: In C++ file src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp, for QueryInterpretation::serialize(), prefer explicit std::holds_alternative/std::get branching over std::visit for readability; do not suggest refactoring to std::visit in future reviews.

Applied to files:

  • src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp
📚 Learning: 2025-08-15T01:04:03.681Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#150
File: src/log_surgeon/wildcard_query_parser/ExpressionView.cpp:11-11
Timestamp: 2025-08-15T01:04:03.681Z
Learning: In y-scope/log-surgeon C++ codebase, prefer explicit includes in implementation files (.cpp) for types that are directly used, even when those headers are already transitively included through the corresponding header file. This makes dependencies explicit and improves maintainability.

Applied to files:

  • src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp
  • src/log_surgeon/finite_automata/TagOperation.hpp
📚 Learning: 2024-11-27T21:56:13.425Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#56
File: src/log_surgeon/finite_automata/RegisterHandler.hpp:0-0
Timestamp: 2024-11-27T21:56:13.425Z
Learning: In the `log_surgeon` project, header guards in C++ header files should include `_HPP` at the end to match the filename. For example, in `RegisterHandler.hpp`, the header guard should be `LOG_SURGEON_FINITE_AUTOMATA_REGISTER_HANDLER_HPP`.

Applied to files:

  • src/log_surgeon/finite_automata/RegisterOperation.hpp
📚 Learning: 2025-08-26T10:06:22.914Z
Learnt from: SharafMohamed
PR: y-scope/log-surgeon#152
File: src/log_surgeon/wildcard_query_parser/Query.hpp:9-11
Timestamp: 2025-08-26T10:06:22.914Z
Learning: In y-scope/log-surgeon project, it's acceptable to include headers like log_surgeon/Lexer.hpp directly in header files rather than using forward declarations, even when only references are used in the interface. The project prefers the simplicity of direct includes over header coupling optimization through forward declarations.

Applied to files:

  • src/.clang-format
⏰ 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). (6)
  • GitHub Check: lint (ubuntu-24.04)
  • GitHub Check: lint (macos-15)
  • GitHub Check: build (macos-15, debug)
  • GitHub Check: build (ubuntu-22.04, debug)
  • GitHub Check: build (macos-15, release)
  • GitHub Check: build (ubuntu-24.04, debug)
🔇 Additional comments (12)
src/log_surgeon/wildcard_query_parser/QueryInterpretation.cpp (1)

12-13: Include order LGTM and aligns with updated clang-format categories.

External fmt headers precede project headers; usage of fmt::format/join covered by included headers.

src/log_surgeon/finite_automata/Nfa.hpp (1)

15-17: fmt includes moved before project headers—consistent and correct.

Header uses fmt in inline methods; placement is appropriate.

src/log_surgeon/finite_automata/NfaState.hpp (1)

16-18: Properly prioritizes external fmt headers before project headers.

Matches project formatting rules; no functional impact.

src/log_surgeon/finite_automata/DfaState.hpp (1)

15-17: Include reordering matches new policy; fmt usage satisfied.

No API/behavioural change.

src/log_surgeon/finite_automata/Dfa.hpp (1)

19-21: fmt includes consolidated early; required for fmt::format and fmt::join. LGTM.

Brings <fmt/format.h> and <fmt/ranges.h> up-front and removes duplication elsewhere. Matches the new include-order rules and the file’s usage.

src/log_surgeon/finite_automata/DfaTransition.hpp (1)

14-16: Include reordering aligns with config; dependencies remain intact.

Project headers now follow fmt headers. The file uses fmt::join, so keeping <fmt/ranges.h> is correct.

src/log_surgeon/finite_automata/NfaSpontaneousTransition.hpp (1)

15-16: Include order updated; no behavioural change.

TagOperation.hpp moved after fmt headers, consistent with the new priorities.

src/log_surgeon/SchemaParser.cpp (1)

26-27: Formatting-only alias wraps; no semantic change.

Line breaks in the using aliases are purely stylistic and consistent with clang-format v21.1.

Also applies to: 36-37

tests/test-schema.cpp (1)

30-31: LGTM: formatting-only alias wrap; no semantic change.
Consistent with the updated clang-format rules.

src/log_surgeon/finite_automata/RegisterOperation.hpp (1)

10-11: LGTM: include-order adjustment places external before project headers.
Matches the PR’s include policy; no API/ODR impact expected.

src/log_surgeon/finite_automata/TagOperation.hpp (1)

10-11: LGTM: include grouping updated to put fmt before project headers.
Change is stylistic; interfaces unchanged.

src/log_surgeon/finite_automata/RegexAST.hpp (1)

22-26: LGTM: project header block moved after fmt headers.
Aligns with repo-wide ordering; no functional differences.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

♻️ Duplicate comments (1)
.gitignore (1)

2-3: Root-anchored ignores LGTM; resolves prior nit.

Using "/.clang-format" and "/.clang-tidy" correctly scopes to the repo root, allowing per-dir configs like src/.clang-format to be tracked.

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between c0dde5b and debe556.

📒 Files selected for processing (2)
  • .gitignore (1 hunks)
  • lint-requirements.txt (1 hunks)
⏰ 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). (7)
  • GitHub Check: lint (macos-15)
  • GitHub Check: lint (ubuntu-24.04)
  • GitHub Check: build (ubuntu-24.04, release)
  • GitHub Check: build (macos-15, debug)
  • GitHub Check: build (ubuntu-22.04, debug)
  • GitHub Check: build (macos-15, release)
  • GitHub Check: build (ubuntu-24.04, debug)

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
@davidlion davidlion merged commit 50e176f into y-scope:main Sep 4, 2025
11 checks passed
@davidlion davidlion deleted the format-update branch September 4, 2025 14:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants