From 21ab6f602111e759ca93c1c3a6ec33bd50236aa6 Mon Sep 17 00:00:00 2001 From: Hugo Pointcheval Date: Wed, 16 Nov 2022 16:27:51 -0500 Subject: [PATCH] chore(auth): use hardlink for vscode folder --- packages/wyatt_authentication_bloc/.pubignore | 3 +- .../.vscode/settings.json | 76 +++++++++++++++++++ 2 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 packages/wyatt_authentication_bloc/.vscode/settings.json diff --git a/packages/wyatt_authentication_bloc/.pubignore b/packages/wyatt_authentication_bloc/.pubignore index 942f102d..11610c5a 100644 --- a/packages/wyatt_authentication_bloc/.pubignore +++ b/packages/wyatt_authentication_bloc/.pubignore @@ -1 +1,2 @@ -firebase_options.dart \ No newline at end of file +firebase_options.dart +.vscode \ No newline at end of file diff --git a/packages/wyatt_authentication_bloc/.vscode/settings.json b/packages/wyatt_authentication_bloc/.vscode/settings.json new file mode 100644 index 00000000..15ece9f4 --- /dev/null +++ b/packages/wyatt_authentication_bloc/.vscode/settings.json @@ -0,0 +1,76 @@ +{ + // Dart + "dart.runPubGetOnPubspecChanges": "never", + // Gitea + "gitea.owner": "Wyatt-FOSS", + "gitea.repo": "wyatt-packages", + // Header + "psi-header.changes-tracking": { + "isActive": true + }, + "psi-header.config": { + "blankLinesAfter": 1, + "forceToTop": true + }, + "psi-header.lang-config": [ + { + "beforeHeader": [ + "# -*- coding:utf-8 -*-", + "#!/usr/bin/env python3" + ], + "begin": "###", + "end": "###", + "language": "python", + "prefix": "# " + }, + { + "beforeHeader": [ + "#!/usr/bin/env sh", + "" + ], + "language": "shellscript", + "begin": "", + "end": "", + "prefix": "# " + }, + { + "begin": "", + "end": "", + "language": "dart", + "prefix": "// " + }, + { + "begin": "", + "end": "", + "language": "yaml", + "prefix": "# " + }, + { + "begin": "", + "language": "markdown", + }, + ], + "psi-header.templates": [ + { + "language": "*", + "template": [ + "Copyright (C) <> WYATT GROUP", + "Please see the AUTHORS file for details.", + "", + "This program is free software: you can redistribute it and/or modify", + "it under the terms of the GNU General Public License as published by", + "the Free Software Foundation, either version 3 of the License, or", + "any later version.", + "", + "This program is distributed in the hope that it will be useful,", + "but WITHOUT ANY WARRANTY; without even the implied warranty of", + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the", + "GNU General Public License for more details.", + "", + "You should have received a copy of the GNU General Public License", + "along with this program. If not, see ." + ], + } + ], +}