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
2 changes: 1 addition & 1 deletion .scripts/ci/check-license-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const ignore = [
]

async function checkFile(file) {
if (extensions.some((e) => file.endsWith(e))) {
if (extensions.some((e) => file.endsWith(e)) && !ignore.some((i) => file.includes(`/${i}/`))) {
const fileStream = fs.createReadStream(file)
const rl = readline.createInterface({
input: fileStream,
Expand Down
4 changes: 4 additions & 0 deletions core/tauri/src/event/commands.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT

use crate::{api::ipc::CallbackFn, command, Manager, Result, Runtime, Window};
use serde::{Deserialize, Deserializer};
use serde_json::Value as JsonValue;
Expand Down
4 changes: 4 additions & 0 deletions core/tauri/src/event/listener.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT

use super::{Event, EventHandler};

use std::{
Expand Down
4 changes: 4 additions & 0 deletions tooling/cli/node/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT

/* tslint:disable */
/* eslint-disable */

Expand Down
4 changes: 4 additions & 0 deletions tooling/cli/node/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT

/* tslint:disable */
/* eslint-disable */
/* prettier-ignore */
Expand Down
4 changes: 4 additions & 0 deletions tooling/cli/src/info/ios.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT

use super::{SectionItem, Status};

use colored::Colorize;
Expand Down