Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion _typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@ extend-ignore-identifiers-re = [
"prev",
"normalises",
"goes",
"inout",
"Bare",
]

[files]
ignore-hidden = false
ignore-files = true
extend-exclude = [
"./CHANGELOG.md",
"CHANGELOG.md",
"/usr/**/*",
"/tmp/**/*",
"/**/node_modules/**",
Expand Down
6 changes: 6 additions & 0 deletions crates/ast-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2026 Knitli Inc. <knitli@knit.li>

SPDX-License-Identifier: MIT OR Apache-2.0
-->

# Changelog

All notable changes to this project will be documented in this file.
Expand Down
6 changes: 6 additions & 0 deletions crates/flow/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2026 Knitli Inc. <knitli@knit.li>

SPDX-License-Identifier: MIT OR Apache-2.0
-->

# Changelog

All notable changes to this project will be documented in this file.
Expand Down
1 change: 1 addition & 0 deletions crates/flow/src/incremental/analyzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,7 @@ impl IncrementalAnalyzer {
}

// Save edges to storage in batch
#[allow(clippy::collapsible_if)]
if !edges_to_save.is_empty() {
if let Err(e) = self.storage.save_edges_batch(&edges_to_save).await {
warn!(
Expand Down
6 changes: 6 additions & 0 deletions crates/language/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2026 Knitli Inc. <knitli@knit.li>

SPDX-License-Identifier: MIT OR Apache-2.0
-->

# Changelog

All notable changes to this project will be documented in this file.
Expand Down
3 changes: 1 addition & 2 deletions crates/language/src/bash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ fn test_bash_pattern_no_match() {

#[test]
fn test_bash_replace() {
// TODO: change the replacer to log $A
let ret = test_replace("echo 123", "echo $A", "log 123");
let ret = test_replace("echo 123", "echo $A", "log $A");
assert_eq!(ret, "log 123");
}
6 changes: 6 additions & 0 deletions crates/rule-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2026 Knitli Inc. <knitli@knit.li>

SPDX-License-Identifier: MIT OR Apache-2.0
-->

# Changelog

All notable changes to this project will be documented in this file.
Expand Down
6 changes: 6 additions & 0 deletions crates/services/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2026 Knitli Inc. <knitli@knit.li>

SPDX-License-Identifier: MIT OR Apache-2.0
-->

# Changelog

All notable changes to this project will be documented in this file.
Expand Down
1 change: 0 additions & 1 deletion crates/services/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// SPDX-FileCopyrightText: 2025 Knitli Inc. <knitli@knit.li>
// SPDX-FileContributor: Adam Poulemanos <adam@knit.li>
// SPDX-License-Identifier: AGPL-3.0-or-later
#![feature(trait_alias)]
//! # Thread Service Layer
//!
//! This crate provides the service layer interfaces for Thread that abstract over
Expand Down
5 changes: 4 additions & 1 deletion crates/services/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ pub use thread_ast_engine::{
pub use thread_language::{SupportLang, SupportLangErr};

#[cfg(not(feature = "ast-grep-backend"))]
pub trait Doc = Clone + 'static;
pub trait Doc: Clone + 'static {}

#[cfg(not(feature = "ast-grep-backend"))]
impl<T: Clone + 'static> Doc for T {}

#[cfg(not(feature = "ast-grep-backend"))]
#[derive(Debug, Clone)]
Expand Down
6 changes: 6 additions & 0 deletions crates/thread/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2026 Knitli Inc. <knitli@knit.li>

SPDX-License-Identifier: MIT OR Apache-2.0
-->

# Changelog

All notable changes to this project will be documented in this file.
Expand Down
6 changes: 6 additions & 0 deletions crates/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2026 Knitli Inc. <knitli@knit.li>

SPDX-License-Identifier: MIT OR Apache-2.0
-->

# Changelog

All notable changes to this project will be documented in this file.
Expand Down
Loading