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

Commit d911e52a authored by Akhil's avatar Akhil 🙂
Browse files

Merge branch 'dev/apply-configuration' into 'main'

Dev/apply configuration

See merge request !34
parents ec409589 662a9e43
Loading
Loading
Loading
Loading
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
+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',
	],
}
+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
@@ -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
+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

.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