Loading .editorconfig 0 → 100644 +18 −0 Original line number Diff line number Diff line root = true # General [*] charset = utf-8 end_of_line = lf insert_final_newline = true [*.{js,php,vue,scss}] indent_style = tab insert_final_newline = true [Makefile] indent_style = tab [*.yml] indent_style = space indent_size = 2 .eslintrc.js +6 −4 Original line number Diff line number Diff line // SPDX-FileCopyrightText: {{ app.author_name }} <{{ app.author_mail }}> // SPDX-License-Identifier: {{ app.license }} module.exports = { extends: [ '@nextcloud' ] }; '@nextcloud', ], } .gitignore +1 −6 Original line number Diff line number Diff line .DS_Store node_modules/ js/ npm-debug.log* yarn-debug.log* yarn-error.log* # Editor directories and files .idea .vscode Loading @@ -11,16 +11,11 @@ yarn-error.log* *.ntvs* *.njsproj *.sln .marginalia build/ coverage/ vendor/ js/ translationtool.phar .php-cs-fixer.cache .phpunit.result.cache junit.xml .php-cs-fixer.dist.php .gitlab-ci.yml +2 −0 Original line number Diff line number Diff line variables: TO_PACKAGE: 'appinfo l10n img lib templates js' include: - project: "e/infra/ecloud/nextcloud-apps/ci-templates" ref: main Loading .php-cs-fixer.dist.php 0 → 100644 +18 −0 Original line number Diff line number Diff line <?php declare(strict_types=1); require_once './vendor/autoload.php'; use Nextcloud\CodingStandard\Config; $config = new Config(); $config ->getFinder() ->ignoreVCSIgnored(true) ->notPath('build') ->notPath('l10n') ->notPath('src') ->notPath('vendor') ->in(__DIR__); return $config; Loading
.editorconfig 0 → 100644 +18 −0 Original line number Diff line number Diff line root = true # General [*] charset = utf-8 end_of_line = lf insert_final_newline = true [*.{js,php,vue,scss}] indent_style = tab insert_final_newline = true [Makefile] indent_style = tab [*.yml] indent_style = space indent_size = 2
.eslintrc.js +6 −4 Original line number Diff line number Diff line // SPDX-FileCopyrightText: {{ app.author_name }} <{{ app.author_mail }}> // SPDX-License-Identifier: {{ app.license }} module.exports = { extends: [ '@nextcloud' ] }; '@nextcloud', ], }
.gitignore +1 −6 Original line number Diff line number Diff line .DS_Store node_modules/ js/ npm-debug.log* yarn-debug.log* yarn-error.log* # Editor directories and files .idea .vscode Loading @@ -11,16 +11,11 @@ yarn-error.log* *.ntvs* *.njsproj *.sln .marginalia build/ coverage/ vendor/ js/ translationtool.phar .php-cs-fixer.cache .phpunit.result.cache junit.xml .php-cs-fixer.dist.php
.gitlab-ci.yml +2 −0 Original line number Diff line number Diff line variables: TO_PACKAGE: 'appinfo l10n img lib templates js' include: - project: "e/infra/ecloud/nextcloud-apps/ci-templates" ref: main Loading
.php-cs-fixer.dist.php 0 → 100644 +18 −0 Original line number Diff line number Diff line <?php declare(strict_types=1); require_once './vendor/autoload.php'; use Nextcloud\CodingStandard\Config; $config = new Config(); $config ->getFinder() ->ignoreVCSIgnored(true) ->notPath('build') ->notPath('l10n') ->notPath('src') ->notPath('vendor') ->in(__DIR__); return $config;