Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8ebecd53 authored by Ronak Patel's avatar Ronak Patel Committed by Akhil
Browse files

Ecloud-theme-helper configuration

parent 90df1c22
Loading
Loading
Loading
Loading

.editorconfig

0 → 100644
+19 −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

0 → 100644
+8 −0
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',
	],
}

.gitignore

0 → 100644
+22 −0
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
*.suo
*.ntvs*
*.njsproj
*.sln
.marginalia
build/
coverage/
vendor/
translationtool.phar
.php-cs-fixer.cache
.phpunit.result.cache
junit.xml
+6 −1
Original line number Diff line number Diff line
variables:
    TO_PACKAGE: 'appinfo css js lib templates'
include:
  - project: "e/infra/ecloud/nextcloud-apps/ci-templates"
    ref: main
    file: "nc-apps-checkout-deploy.yml"
 No newline at end of file
    file: "nc-apps-lint-build-frontend.yml"
  - project: "e/infra/ecloud/nextcloud-apps/ci-templates"
    ref: main
    file: "nc-apps-deploy.yml"

.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