Skip to content

Commit 687053b

Browse files
committed
clippy
1 parent d2dfef8 commit 687053b

5 files changed

Lines changed: 8 additions & 9 deletions

File tree

src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
3-
* This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2025 Datadog, Inc.
3+
* This product includes software developed at Datadog (<https://www.datadoghq.com>/). Copyright 2025 Datadog, Inc.
44
**/
55
use std::path::PathBuf;
66

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
3-
* This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2025 Datadog, Inc.
3+
* This product includes software developed at Datadog (<https://www.datadoghq.com>/). Copyright 2025 Datadog, Inc.
44
**/
55
use std::fmt::{self, Display, Formatter};
66

src/function_query.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
3-
* This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2025 Datadog, Inc.
3+
* This product includes software developed at Datadog (<https://www.datadoghq.com>/). Copyright 2025 Datadog, Inc.
44
**/
55
use crate::error::OrchestrionError;
66
use swc_core::ecma::ast::{FnDecl, FnExpr, Function};

src/instrumentation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
3-
* This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2025 Datadog, Inc.
3+
* This product includes software developed at Datadog (<https://www.datadoghq.com>/). Copyright 2025 Datadog, Inc.
44
**/
55
use crate::config::InstrumentationConfig;
66
use std::path::PathBuf;

src/lib.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/**
2-
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
3-
* This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2025 Datadog, Inc.
4-
**/
5-
61
//! # Orchestrion
72
//! Orchestrion is a library for instrumenting Node.js libraries at build or load time.
83
//! It provides [`VisitMut`] implementations for SWC's AST nodes, which can be used to insert
@@ -19,6 +14,10 @@
1914
#![deny(clippy::correctness)]
2015
#![deny(clippy::unwrap_used)]
2116

17+
/**
18+
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
19+
* This product includes software developed at Datadog (<https://www.datadoghq.com>/). Copyright 2025 Datadog, Inc.
20+
**/
2221
use std::path::PathBuf;
2322
use std::str::FromStr;
2423

0 commit comments

Comments
 (0)