Skip to content

Commit e5bb140

Browse files
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <[email protected]>
1 parent be55cb6 commit e5bb140

File tree

6 files changed

+19
-1
lines changed

6 files changed

+19
-1
lines changed

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
13
# Ignoring folders for eslint
24
node_modules/
35
3rdparty/

.eslintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
15
module.exports = {
26
globals: {
37
__webpack_nonce__: true,

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-FileCopyrightText: 2011-2016 ownCloud contributors
3+
# SPDX-FileCopyrightText: 2010 ownCloud contributors
4+
# SPDX-License-Identifier: AGPL-3.0-only
15
# the default generated dir + db file
26
/data
37
/config/config.php

.php-cs-fixer.dist.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
<?php
22

33
declare(strict_types=1);
4-
4+
/**
5+
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
6+
* SPDX-License-Identifier: AGPL-3.0-or-later
7+
*/
58
require_once './vendor-bin/cs-fixer/vendor/autoload.php';
69

710
use Nextcloud\CodingStandard\Config;

.pre-commit-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# See https://pre-commit.com for more information
22
# See https://pre-commit.com/hooks.html for more hooks
3+
# SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
4+
# SPDX-License-Identifier: AGPL-3.0-or-later
35
repos:
46
- repo: https://github.com/pre-commit/pre-commit-hooks
57
rev: v4.3.0

.scrutinizer.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
2+
# SPDX-FileCopyrightText: 2016 ownCloud, Inc.
3+
# SPDX-License-Identifier: AGPL-3.0-only
14
before_commands:
25
- 'git submodule update --init --recursive'
36

0 commit comments

Comments
 (0)