From ba8d83a71cfca47bb84d6b5e51483f0eb4cb0a3f Mon Sep 17 00:00:00 2001 From: Benjamin Koltes Date: Wed, 13 Sep 2023 17:43:49 +0200 Subject: [PATCH] Add license to all files --- LICENSE | 2 +- NOTICE | 2 +- jest.config.js | 4 ++++ lint-staged.config.js | 4 ++++ prettier.config.js | 4 ++++ 5 files changed, 14 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index ca8a5b0e..45d2bb5c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Datadog +Copyright (c) 2023 Datadog Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/NOTICE b/NOTICE index 02f7713a..2a5465b4 100644 --- a/NOTICE +++ b/NOTICE @@ -1,4 +1,4 @@ Datadog build-plugin -Copyright 2022-present Datadog, Inc. +Copyright 2023-present Datadog, Inc. This product includes software developed at Datadog (https://www.datadoghq.com/). diff --git a/jest.config.js b/jest.config.js index 6742a708..d9a8df0f 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,3 +1,7 @@ +// Unless explicitly stated otherwise all files in this repository are licensed under the MIT License. +// This product includes software developed at Datadog (https://www.datadoghq.com/). +// Copyright 2019-Present Datadog, Inc. + module.exports = { // Automatically clear mock calls and instances between every test clearMocks: true, diff --git a/lint-staged.config.js b/lint-staged.config.js index cdf4da6d..e77bc050 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -1,3 +1,7 @@ +// Unless explicitly stated otherwise all files in this repository are licensed under the MIT License. +// This product includes software developed at Datadog (https://www.datadoghq.com/). +// Copyright 2019-Present Datadog, Inc. + module.exports = { '*.{ts,tsx}': () => ['yarn typecheck', 'yarn format', 'git add'], relative: 'true', diff --git a/prettier.config.js b/prettier.config.js index 5dee820c..2cccb465 100644 --- a/prettier.config.js +++ b/prettier.config.js @@ -1,3 +1,7 @@ +// Unless explicitly stated otherwise all files in this repository are licensed under the MIT License. +// This product includes software developed at Datadog (https://www.datadoghq.com/). +// Copyright 2019-Present Datadog, Inc. + module.exports = { printWidth: 100, tabWidth: 4,