diff options
Diffstat (limited to 'build/files-checker.php')
-rw-r--r-- | build/files-checker.php | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/build/files-checker.php b/build/files-checker.php index 17216399ca4..08d9acf2fd8 100644 --- a/build/files-checker.php +++ b/build/files-checker.php @@ -1,4 +1,6 @@ <?php + +declare(strict_types=1); /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later @@ -9,9 +11,11 @@ $expectedFiles = [ '..', '.devcontainer', '.editorconfig', + '.envrc', '.eslintignore', '.eslintrc.js', '.git', + '.git-blame-ignore-revs', '.gitattributes', '.github', '.gitignore', @@ -23,8 +27,6 @@ $expectedFiles = [ '.npmignore', '.php-cs-fixer.dist.php', '.pre-commit-config.yaml', - '.reuse', - '.scrutinizer.yml', '.tag', '.tx', '.user.ini', @@ -39,6 +41,7 @@ $expectedFiles = [ 'DESIGN.md', 'Makefile', 'README.md', + 'REUSE.toml', 'SECURITY.md', 'apps', 'autotest-checkers.sh', @@ -59,16 +62,19 @@ $expectedFiles = [ 'cypress.d.ts', 'cypress', 'dist', + 'flake.lock', + 'flake.nix', 'index.html', 'index.php', - 'jest.config.ts', 'lib', 'LICENSES', 'occ', 'ocs', 'ocs-provider', + 'openapi.json', 'package-lock.json', 'package.json', + 'psalm-ncu.xml', 'psalm-ocp.xml', 'psalm.xml', 'public.php', @@ -76,11 +82,13 @@ $expectedFiles = [ 'resources', 'robots.txt', 'status.php', + 'stylelint.config.js', 'tests', 'themes', 'tsconfig.json', 'vendor-bin', 'version.php', + 'vitest.config.mts', 'webpack.common.js', 'webpack.config.js', 'webpack.modules.js', |